package dap

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Debug_protocol.Exception_path_segmentSource

Sourcetype t = {
  1. negate : bool option;
    (*

    If false or missing this segment matches the names provided, otherwise it matches anything except the names provided.

    *)
  2. names : string list;
    (*

    Depending on the value of 'negate' the names that should match or not match.

    *)
}

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.

Sourceval make : ?negate:bool option -> ?names:string list -> unit -> t
Sourceval to_yojson : t -> Yojson.Safe.t
OCaml

Innovation. Community. Security.