summaryrefslogtreecommitdiff
path: root/src/compiler.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-06-08 12:27:08 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-06-08 12:27:08 -0400
commit32115a531d5ed6cafa25dc7d3b88c2679e5142a5 (patch)
tree17f75e04d2559dc15a0f184c1c7da266de8a5a16 /src/compiler.sml
parentc060d15003e3435d4d4c770d8f109f756db13ef5 (diff)
Primitive type constants
Diffstat (limited to 'src/compiler.sml')
-rw-r--r--src/compiler.sml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler.sml b/src/compiler.sml
index 3e39dcc9..6ea5f1dc 100644
--- a/src/compiler.sml
+++ b/src/compiler.sml
@@ -76,10 +76,10 @@ fun testParse filename =
print "\n")
fun testElaborate filename =
- (case elaborate ElabEnv.empty filename of
+ (case elaborate ElabEnv.basis filename of
NONE => print "Failed\n"
| SOME (_, file) =>
- (Print.print (ElabPrint.p_file ElabEnv.empty file);
+ (Print.print (ElabPrint.p_file ElabEnv.basis file);
print "\n"))
handle ElabEnv.UnboundNamed n =>
print ("Unbound named " ^ Int.toString n ^ "\n")