Module Step_in_command.Arguments

type t = {
thread_id : int;

Execute 'stepIn' for this thread.

target_id : int option;

Optional id of the target to step into.

granularity : Stepping_granularity.t option;

Optional granularity to step. If no granularity is specified, a granularity of 'statement' is assumed.

}

Arguments for 'stepIn' request.

val make : thread_id:int -> ?⁠target_id:int option -> ?⁠granularity:Stepping_granularity.t option -> unit -> t
val to_yojson : t -> Yojson.Safe.t
val of_yojson : Yojson.Safe.t -> t Ppx_deriving_yojson_runtime.error_or