Sha256: 746b7d45e298a50e038b18e3fa8b2fa39b3b6ae8c0dc536ed425b2a0a8dd15fb

Contents?: true

Size: 720 Bytes

Versions: 1

Compression:

Stored size: 720 Bytes

Contents

# Properties of a breakpoint passed to the setFunctionBreakpoints request.
class DAP::FunctionBreakpoint < DAP::Base
  # The name of the function.
  property :name, as: 'string'

  # An optional expression for conditional breakpoints.
  # It is only honored by a debug adapter if the capability 'supportsConditionalBreakpoints' is true.
  property :condition, required: false, as: 'string'

  # An optional expression that controls how many hits of the breakpoint are ignored.
  # The backend is expected to interpret the expression as needed.
  # The attribute is only honored by a debug adapter if the capability 'supportsHitConditionalBreakpoints' is true.
  property :hitCondition, required: false, as: 'string'
end

Version data entries

1 entries across 1 versions & 1 rubygems

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