diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-07-29 14:28:44 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-07-29 14:28:44 -0400 |
commit | 6855e4766fa8d07e2f3e3cd468de6c58fed0c903 (patch) | |
tree | 4098c6f3f8d9bacfe652f2b210ede504a9a5d4e9 /src/cjr_env.sig | |
parent | 166bccac16d35d8a4b75a4c04c7479b389a81c4f (diff) |
Start of unurlify for datatypes
Diffstat (limited to 'src/cjr_env.sig')
-rw-r--r-- | src/cjr_env.sig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cjr_env.sig b/src/cjr_env.sig index 36c3d682..5cd5cb32 100644 --- a/src/cjr_env.sig +++ b/src/cjr_env.sig @@ -36,8 +36,8 @@ signature CJR_ENV = sig exception UnboundF of int exception UnboundStruct of int - val pushTNamed : env -> string -> int -> Cjr.typ option -> env - val lookupTNamed : env -> int -> string * Cjr.typ option + val pushDatatype : env -> string -> int -> (string * int * Cjr.typ option) list -> env + val lookupDatatype : env -> int -> string * (string * int * Cjr.typ option) list val pushERel : env -> string -> Cjr.typ -> env val lookupERel : env -> int -> string * Cjr.typ |