Sha256: 54e0c68a7761b8c9fc322e21283967fffa9fb89081e6fccb2a674453a824bb4d

Contents?: true

Size: 632 Bytes

Versions: 1

Compression:

Stored size: 632 Bytes

Contents

# The event indicates that the execution of the debuggee has continued. Please
# note: a debug adapter is not expected to send this event in response to a
# request that implies that execution continues, e.g. ‘launch’ or ‘continue’. It
# is only necessary to send a ‘continued’ event if there was no previous request
# that implied this.
class DAP::ContinuedEventBody < DAP::Base
  # The thread which was continued.
  property :threadId, as: 'number'

  # If 'allThreadsContinued' is true, a debug adapter can announce that all threads have continued.
  property :allThreadsContinued, required: false, as: 'boolean'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruby-dap-0.1.3 lib/dap/continued_event_body.rb