Sha256: 9fea06996471d7e873113e17c71121c427977c5a298f3230fe2512afbb7bc615

Contents?: true

Size: 541 Bytes

Versions: 1

Compression:

Stored size: 541 Bytes

Contents

require_relative 'exception_options'

# Arguments for ‘setExceptionBreakpoints’ request.
class DAP::SetExceptionBreakpointsArguments < DAP::Base
  # IDs of checked exception options. The set of IDs is returned via the 'exceptionBreakpointFilters' capability.
  property :filters, as: 'string[]'

  # Configuration options for selected exceptions.
  # The attribute is only honored by a debug adapter if the capability 'supportsExceptionOptions' is true.
  property :exceptionOptions, required: false, as: many(DAP::ExceptionOptions)
end

Version data entries

1 entries across 1 versions & 1 rubygems

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