diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-06-22 14:23:05 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-06-22 14:23:05 -0400 |
commit | 1abc7fd02cd1a8183241ff9b3574ea6f3388ebcb (patch) | |
tree | 3101f6d2752a798a1ce3e8aacc8cfb147823ae6f /src/elab_env.sml | |
parent | 2500639bb374dc42be1a82bb10b0437cbba49ad1 (diff) |
Separate compilation and automatic basis importation
Diffstat (limited to 'src/elab_env.sml')
-rw-r--r-- | src/elab_env.sml | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/elab_env.sml b/src/elab_env.sml index db9faa22..a673c523 100644 --- a/src/elab_env.sml +++ b/src/elab_env.sml @@ -418,14 +418,4 @@ fun projectStr env {sgn, str, field} = | SgnError => SOME (SgnError, ErrorMsg.dummySpan) | _ => NONE - -val ktype = (KType, ErrorMsg.dummySpan) - -fun bbind env x = #1 (pushCNamed env x ktype NONE) - -val basis = empty -val basis = bbind basis "int" -val basis = bbind basis "float" -val basis = bbind basis "string" - end |