Sha256: 40f387b5e4b869311b8536a398b72c1127f1086729b3b194f6489e34ae158b7a

Contents?: true

Size: 394 Bytes

Versions: 1

Compression:

Stored size: 394 Bytes

Contents

# This enumeration defines all possible conditions when a thrown exception should
# result in a break.
class DAP::ExceptionBreakMode < DAP::Enum
  # never breaks
  NEVER = new('never')
  # always breaks
  ALWAYS = new('always')
  # breaks when exception unhandled
  UNHANDLED = new('unhandled')
  # breaks if the exception is not handled by user code
  USERUNHANDLED = new('userUnhandled')
end

Version data entries

1 entries across 1 versions & 1 rubygems

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