3 * Author: Kaustuv Chaudhuri <kaustuv+@cs.cmu.edu>
4 * Modified: Frank Pfenning <fp@cs.cmu.edu>
6 * Glueing together the pieces produced by ML-Lex and ML-Yacc
11 (* parse filename = ast
12 * will raise ErrorMsg.Error in case of lexing or parsing error
14 val parse : string -> Ast.program
17 structure Parse :> PARSE =
20 structure L2LrVals = L2LrValsFn (structure Token = LrParser.Token)
21 structure L2Lex = L2LexFn (structure Tokens = L2LrVals.Tokens)
22 structure L2Parse = Join (structure ParserData = L2LrVals.ParserData
24 structure LrParser = LrParser)
26 (* Main parsing function *)
28 SafeIO.withOpenIn filename (fn instream =>
30 val _ = ErrorMsg.reset() (* no errors, no messages so far *)
31 val _ = ParseState.setfile filename (* start at position 0 in filename *)
32 fun parseerror (s, p1, p2) = ErrorMsg.error (ParseState.ext (p1,p2)) s
33 val lexer = LrParser.Stream.streamify
34 (L2Lex.makeLexer (fn _ => TextIO.input instream))
35 (* 0 = no error correction, 15 = reasonable lookahead for correction *)
36 val (absyn, _) = L2Parse.parse(0, lexer, parseerror, ())
37 val _ = if !ErrorMsg.anyErrors
38 then raise ErrorMsg.Error
43 handle Fail s => ( ErrorMsg.error NONE ("lexer error: "^s) ;
44 raise ErrorMsg.Error )
45 | LrParser.ParseError => raise ErrorMsg.Error (* always preceded by msg *)
46 | e as IO.Io _ => ( ErrorMsg.error NONE (exnMessage e);
47 raise ErrorMsg.Error )