diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-11-09 11:53:52 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-11-09 11:53:52 -0500 |
commit | 23d4ee74243e0d9d630c863e83403d25e926ff88 (patch) | |
tree | a7b3f4490705ab9eb503022eec6cd8271270be2e /src/core_util.sig | |
parent | bf14288c4da80f65aa920b001cf8e3070c8b4c3e (diff) |
Especialize working reasonably well; need to add new closure representation pass
Diffstat (limited to 'src/core_util.sig')
-rw-r--r-- | src/core_util.sig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core_util.sig b/src/core_util.sig index 51dee8f4..e435aeaf 100644 --- a/src/core_util.sig +++ b/src/core_util.sig @@ -175,6 +175,12 @@ structure File : sig bind : 'context * binder -> 'context} -> 'context -> Core.file -> Core.file + val map : {kind : Core.kind' -> Core.kind', + con : Core.con' -> Core.con', + exp : Core.exp' -> Core.exp', + decl : Core.decl' -> Core.decl'} + -> Core.file -> Core.file + val fold : {kind : Core.kind' * 'state -> 'state, con : Core.con' * 'state -> 'state, exp : Core.exp' * 'state -> 'state, |