Sha256: 3306308d5adaed7d2495c6470aef80980598e5e7e756acb6dad66846ca402d7a

Contents?: true

Size: 405 Bytes

Versions: 3

Compression:

Stored size: 405 Bytes

Contents

require_relative 'stepping_granularity'

class DAP::StepInArguments < DAP::Base
  # Execute 'stepIn' for this thread.
  property :threadId

  # Optional id of the target to step into.
  property :targetId, required: false

  # Optional granularity to step. If no granularity is specified, a granularity of 'statement' is assumed.
  property :granularity, required: false, as: DAP::SteppingGranularity
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby-dap-0.1.2 lib/dap/step_in_arguments.rb
ruby-dap-0.1.1 lib/dap/step_in_arguments.rb
ruby-dap-0.1.0 lib/dap/step_in_arguments.rb