Sha256: b7bb68541e79f35d971e47773777fc4f30814dbae73c55b036d96123cd7af7d7
Contents?: true
Size: 471 Bytes
Versions: 1
Compression:
Stored size: 471 Bytes
Contents
require_relative 'stepping_granularity' # Arguments for ‘stepIn’ request. class DAP::StepInArguments < DAP::Base # Execute 'stepIn' for this thread. property :threadId, as: 'number' # Optional id of the target to step into. property :targetId, required: false, as: 'number' # 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-dap-0.1.3 | lib/dap/step_in_arguments.rb |