Sha256: d664b51203323c23b2237c5ee2d591a93b913b972602f37ca17b59b46b98e81d
Contents?: true
Size: 647 Bytes
Versions: 1
Compression:
Stored size: 647 Bytes
Contents
# An ExceptionPathSegment represents a segment in a path that is used to match # leafs or nodes in a tree of exceptions. If a segment consists of more than one # name, it matches the names provided if ‘negate’ is false or missing or it # matches anything except the names provided if ‘negate’ is true. class DAP::ExceptionPathSegment < DAP::Base # If false or missing this segment matches the names provided, otherwise it matches anything except the names provided. property :negate, required: false, as: 'boolean' # Depending on the value of 'negate' the names that should match or not match. property :names, as: 'string[]' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-dap-0.1.3 | lib/dap/exception_path_segment.rb |