sig
  type t = {
    location : Sarif.Location.t;
    stack_module : string;
    threadId : int;
    address : int;
    offset : int;
    parameters : string list;
    properties : Sarif.Properties.t;
  }
  val to_yojson : Sarif.StackFrame.t -> Yojson.Safe.t
  val of_yojson :
    Yojson.Safe.t -> Sarif.StackFrame.t Ppx_deriving_yojson_runtime.error_or
end