Skip to content

Commit

Permalink
rename interpret_functor_intf to interpret_intf
Browse files Browse the repository at this point in the history
  • Loading branch information
zapashcanon committed Jan 23, 2024
1 parent 1868418 commit 2864259
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/dune
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
int32
int64
interpret
interpret_functor_intf
interpret_intf
lexer
link
link_env
Expand Down
4 changes: 2 additions & 2 deletions src/interpret.ml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ open Simplified

let use_ite_for_select = true

module Make (P : Interpret_functor_intf.P) :
Interpret_functor_intf.S
module Make (P : Interpret_intf.P) :
Interpret_intf.S
with type 'a choice := 'a P.Choice.t
and type module_to_run := P.Module_to_run.t
and type thread := P.thread
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/symbolic.ml
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ module P = struct
end
end

module P' : Interpret_functor_intf.P = P
module P' : Interpret_intf.P = P

let convert_module_to_run (m : 'f Link.module_to_run) =
P.Module_to_run.{ modul = m.modul; env = m.env; to_run = m.to_run }
1 change: 0 additions & 1 deletion src/symbolic_memory.ml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
(* SPDX-License-Identifier: AGPL-3.0-or-later *)
(* Copyright © 2021 Léo Andrès *)
(* Copyright © 2021 Pierre Chambart *)
module Intf = Interpret_functor_intf
module Value = Symbolic_value.S

(* TODO: use Syntax module *)
Expand Down

0 comments on commit 2864259

Please sign in to comment.