sig
  type constant =
      Int of int
    | Float of float
    | String of string
    | EnumC of int * string
  val toString : Ast.Constant.constant -> string
end