comparison src/compiler.sml @ 4:5c3cc348e9e6

Rename Laconic* modules to Source*
author Adam Chlipala <adamc@hcoop.net>
date Sat, 26 Jan 2008 15:29:09 -0500
parents 4202f6eda946
children 258261a53842
comparison
equal deleted inserted replaced
3:daa4f1d7a663 4:5c3cc348e9e6
56 NONE => print "Parse error\n" 56 NONE => print "Parse error\n"
57 | SOME file => 57 | SOME file =>
58 if ErrorMsg.anyErrors () then 58 if ErrorMsg.anyErrors () then
59 print "Recoverable parse error\n" 59 print "Recoverable parse error\n"
60 else 60 else
61 (Print.print (LaconicPrint.p_file file); 61 (Print.print (SourcePrint.p_file file);
62 print "\n") 62 print "\n")
63 63
64 end 64 end