summaryrefslogtreecommitdiff
path: root/compiler/Print.ml
diff options
context:
space:
mode:
authorSon Ho2023-11-21 12:15:37 +0100
committerSon Ho2023-11-21 12:15:37 +0100
commitf852e1a1334b7506c0baf366b9e75cd01b9c843e (patch)
treeb0cb53bbf9df65f9acd809765c96f0fec171cf04 /compiler/Print.ml
parent753f7e72f87f5282aee60ad5ada47efeb42625e9 (diff)
Rename PrimitiveValues to Values
Diffstat (limited to '')
-rw-r--r--compiler/Print.ml3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/Print.ml b/compiler/Print.ml
index 48a5a20b..92ce6f23 100644
--- a/compiler/Print.ml
+++ b/compiler/Print.ml
@@ -10,7 +10,6 @@ open ValuesUtils
open Expressions
open LlbcAst
open Contexts
-module PrimitiveValues = Charon.PrintPrimitiveValues
module Types = Charon.PrintTypes
module Expressions = Charon.PrintExpressions
@@ -21,6 +20,8 @@ let bool_to_string (b : bool) : string = if b then "true" else "false"
(** Pretty-printing for values *)
module Values = struct
+ include Charon.PrintValues
+
let symbolic_value_id_to_pretty_string (id : SymbolicValueId.id) : string =
"s@" ^ SymbolicValueId.to_string id