Sha256: 8ad6969fd0a6f3c7d72ce54b9dae3f1b9ed2da68dbe88251b520078cf0b5322a

Contents?: true

Size: 422 Bytes

Versions: 1

Compression:

Stored size: 422 Bytes

Contents

require_relative 'breakpoint'

# The event indicates that some information about a breakpoint has changed.
class DAP::BreakpointEventBody < DAP::Base
  # The reason for the event.
  # Values: 'changed', 'new', 'removed', etc.
  property :reason, as: 'string'

  # The 'id' attribute is used to find the target breakpoint and the other attributes are used as the new values.
  property :breakpoint, as: DAP::Breakpoint
end

Version data entries

1 entries across 1 versions & 1 rubygems

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