SCM Repository
View of /sml/trunk/src/ml-burg/errormsg.sml
Parent Directory
|
Revision Log
Revision 114 -
(download)
(annotate)
Fri Jun 5 19:41:21 1998 UTC (22 years, 10 months ago) by monnier
File size: 694 byte(s)
Fri Jun 5 19:41:21 1998 UTC (22 years, 10 months ago) by monnier
File size: 694 byte(s)
This commit was generated by cvs2svn to compensate for changes in r113, which included commits to RCS files with non-trunk default branches.
(* errormsg.sml * * COPYRIGHT (c) 1995 AT&T Bell Laboratories. * * $Log$ * Revision 1.1.1.4 1998/06/05 19:39:46 monnier * 110.7 * * Revision 1.1.1.1 1997/01/14 01:37:59 george * Version 109.24 * * Revision 1.1.1.2 1997/01/11 18:52:30 george * ml-burg Version 109.24 * * Revision 1.1.1.1 1996/01/31 16:01:24 george * Version 109 * *) structure ErrorMsg = struct exception Compiler val anyErrors = ref false fun say (msg:string) = (print msg; print "\n") fun warning msg = say ("\tWarning: " ^ msg); fun complain msg = (say ("\tError: " ^ msg); anyErrors := true) fun impossible msg = (complain("Internal bug: " ^ msg); raise Compiler) end
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |