Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
NatKarmios committed Mar 2, 2024
1 parent d49dad5 commit ead989a
Show file tree
Hide file tree
Showing 20 changed files with 1,318 additions and 1,145 deletions.
4 changes: 2 additions & 2 deletions Gillian-C/bin/gillian_c.ml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ module Gil_to_c_lifter
with type annot = CParserAndCompiler.Annot.t) =
struct
include
Gillian.Debugger.Lifter.Gil_lifter.Make (CParserAndCompiler) (Verification)
(SMemory)
Gillian.Debugger.Lifter.Gil_lifter.Make (SMemory) (CParserAndCompiler)
(Verification)

let add_variables = MonadicSMemory.Lift.add_variables
end
Expand Down
4 changes: 2 additions & 2 deletions Gillian-JS/lib/Debugging/JSLifter.ml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ module Make
(Verification : Gillian.Abstraction.Verifier.S with type annot = PC.Annot.t) =
struct
module Gil_lifter =
Gillian.Debugger.Lifter.Gil_lifter.Make (PC) (Verification)
(Semantics.Symbolic)
Gillian.Debugger.Lifter.Gil_lifter.Make (Semantics.Symbolic) (PC)
(Verification)

include Gil_lifter

Expand Down
2 changes: 1 addition & 1 deletion GillianCore/debugging/adapter/time_travel.ml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module Make (Debugger : Debugger.S) = struct
(fun _ ->
let stop_reason = Debugger.step dbg in
send_stopped_events stop_reason);
DL.set_rpc_command_handler rpc ~name:"Reverse"
DL.set_rpc_command_handler rpc ~name:"Reverse continue"
(module Reverse_continue_command)
(fun _ ->
let stop_reason = Debugger.run ~reverse:true dbg in
Expand Down
Loading

0 comments on commit ead989a

Please sign in to comment.