package dap

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. supports_configuration_done_request : bool option;
    (*

    The debug adapter supports the 'configurationDone' request.

    *)
  2. supports_function_breakpoints : bool option;
    (*

    The debug adapter supports function breakpoints.

    *)
  3. supports_conditional_breakpoints : bool option;
    (*

    The debug adapter supports conditional breakpoints.

    *)
  4. supports_hit_conditional_breakpoints : bool option;
    (*

    The debug adapter supports breakpoints that break execution after a specified number of hits.

    *)
  5. supports_evaluate_for_hovers : bool option;
    (*

    The debug adapter supports a (side effect free) evaluate request for data hovers.

    *)
  6. exception_breakpoint_filters : Exception_breakpoints_filter.t list option;
    (*

    Available exception filter options for the 'setExceptionBreakpoints' request.

    *)
  7. supports_step_back : bool option;
    (*

    The debug adapter supports stepping back via the 'stepBack' and 'reverseContinue' requests.

    *)
  8. supports_set_variable : bool option;
    (*

    The debug adapter supports setting a variable to a value.

    *)
  9. supports_restart_frame : bool option;
    (*

    The debug adapter supports restarting a frame.

    *)
  10. supports_goto_targets_request : bool option;
    (*

    The debug adapter supports the 'gotoTargets' request.

    *)
  11. supports_step_in_targets_request : bool option;
    (*

    The debug adapter supports the 'stepInTargets' request.

    *)
  12. supports_completions_request : bool option;
    (*

    The debug adapter supports the 'completions' request.

    *)
  13. completion_trigger_characters : string list option;
    (*

    The set of characters that should trigger completion in a REPL. If not specified, the UI should assume the '.' character.

    *)
  14. supports_modules_request : bool option;
    (*

    The debug adapter supports the 'modules' request.

    *)
  15. additional_module_columns : Column_descriptor.t list option;
    (*

    The set of additional module information exposed by the debug adapter.

    *)
  16. supported_checksum_algorithms : Checksum_algorithm.t list option;
    (*

    Checksum algorithms supported by the debug adapter.

    *)
  17. supports_restart_request : bool option;
    (*

    The debug adapter supports the 'restart' request. In this case a client should not implement 'restart' by terminating and relaunching the adapter but by calling the RestartRequest.

    *)
  18. supports_exception_options : bool option;
    (*

    The debug adapter supports 'exceptionOptions' on the setExceptionBreakpoints request.

    *)
  19. supports_value_formatting_options : bool option;
    (*

    The debug adapter supports a 'format' attribute on the stackTraceRequest, variablesRequest, and evaluateRequest.

    *)
  20. supports_exception_info_request : bool option;
    (*

    The debug adapter supports the 'exceptionInfo' request.

    *)
  21. support_terminate_debuggee : bool option;
    (*

    The debug adapter supports the 'terminateDebuggee' attribute on the 'disconnect' request.

    *)
  22. supports_delayed_stack_trace_loading : bool option;
    (*

    The debug adapter supports the delayed loading of parts of the stack, which requires that both the 'startFrame' and 'levels' arguments and an optional 'totalFrames' result of the 'StackTrace' request are supported.

    *)
  23. supports_loaded_sources_request : bool option;
    (*

    The debug adapter supports the 'loadedSources' request.

    *)
  24. supports_log_points : bool option;
    (*

    The debug adapter supports logpoints by interpreting the 'logMessage' attribute of the SourceBreakpoint.

    *)
  25. supports_terminate_threads_request : bool option;
    (*

    The debug adapter supports the 'terminateThreads' request.

    *)
  26. supports_set_expression : bool option;
    (*

    The debug adapter supports the 'setExpression' request.

    *)
  27. supports_terminate_request : bool option;
    (*

    The debug adapter supports the 'terminate' request.

    *)
  28. supports_data_breakpoints : bool option;
    (*

    The debug adapter supports data breakpoints.

    *)
  29. supports_read_memory_request : bool option;
    (*

    The debug adapter supports the 'readMemory' request.

    *)
  30. supports_disassemble_request : bool option;
    (*

    The debug adapter supports the 'disassemble' request.

    *)
  31. supports_cancel_request : bool option;
    (*

    The debug adapter supports the 'cancel' request.

    *)
  32. supports_breakpoint_locations_request : bool option;
    (*

    The debug adapter supports the 'breakpointLocations' request.

    *)
  33. supports_clipboard_context : bool option;
    (*

    The debug adapter supports the 'clipboard' context value in the 'evaluate' request.

    *)
  34. supports_stepping_granularity : bool option;
    (*

    The debug adapter supports stepping granularities (argument 'granularity') for the stepping requests.

    *)
  35. supports_instruction_breakpoints : bool option;
    (*

    The debug adapter supports adding breakpoints based on instruction references.

    *)
  36. supports_exception_filter_options : bool option;
    (*

    The debug adapter supports 'filterOptions' as an argument on the 'setExceptionBreakpoints' request.

    *)
}

Information about the capabilities of a debug adapter.

val make : ?supports_configuration_done_request:bool option -> ?supports_function_breakpoints:bool option -> ?supports_conditional_breakpoints:bool option -> ?supports_hit_conditional_breakpoints:bool option -> ?supports_evaluate_for_hovers:bool option -> ?exception_breakpoint_filters:Exception_breakpoints_filter.t list option -> ?supports_step_back:bool option -> ?supports_set_variable:bool option -> ?supports_restart_frame:bool option -> ?supports_goto_targets_request:bool option -> ?supports_step_in_targets_request:bool option -> ?supports_completions_request:bool option -> ?completion_trigger_characters:string list option -> ?supports_modules_request:bool option -> ?additional_module_columns:Column_descriptor.t list option -> ?supported_checksum_algorithms:Checksum_algorithm.t list option -> ?supports_restart_request:bool option -> ?supports_exception_options:bool option -> ?supports_value_formatting_options:bool option -> ?supports_exception_info_request:bool option -> ?support_terminate_debuggee:bool option -> ?supports_delayed_stack_trace_loading:bool option -> ?supports_loaded_sources_request:bool option -> ?supports_log_points:bool option -> ?supports_terminate_threads_request:bool option -> ?supports_set_expression:bool option -> ?supports_terminate_request:bool option -> ?supports_data_breakpoints:bool option -> ?supports_read_memory_request:bool option -> ?supports_disassemble_request:bool option -> ?supports_cancel_request:bool option -> ?supports_breakpoint_locations_request:bool option -> ?supports_clipboard_context:bool option -> ?supports_stepping_granularity:bool option -> ?supports_instruction_breakpoints:bool option -> ?supports_exception_filter_options:bool option -> unit -> t
val to_yojson : t -> Yojson.Safe.t