Mercurial > urweb
diff src/core_env.sml @ 56:d3cc191cb25f
Separate compilation and automatic basis importation
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Sun, 22 Jun 2008 14:23:05 -0400 |
parents | 1ab48e37d0ef |
children | f0f59e918cac |
line wrap: on
line diff
--- a/src/core_env.sml Sun Jun 22 11:04:10 2008 -0400 +++ b/src/core_env.sml Sun Jun 22 14:23:05 2008 -0400 @@ -124,17 +124,4 @@ DCon (x, n, k, c) => pushCNamed env x n k (SOME c) | DVal (x, n, t, e) => pushENamed env x n t (SOME e) -val ktype = (KType, ErrorMsg.dummySpan) - -fun bbind env x = - case ElabEnv.lookupC ElabEnv.basis x of - ElabEnv.NotBound => raise Fail "CoreEnv.bbind: Not bound" - | ElabEnv.Rel _ => raise Fail "CoreEnv.bbind: Rel" - | ElabEnv.Named (n, _) => pushCNamed env x n ktype NONE - -val basis = empty -val basis = bbind basis "int" -val basis = bbind basis "float" -val basis = bbind basis "string" - end