SCM Repository
View of /trunk/src/compiler/parser/parser.sml
Parent Directory
|
Revision Log
Revision 110 -
(download)
(annotate)
Wed Jun 23 19:28:48 2010 UTC (10 years, 6 months ago) by jhr
File size: 1089 byte(s)
Wed Jun 23 19:28:48 2010 UTC (10 years, 6 months ago) by jhr
File size: 1089 byte(s)
Moving compiler sources into src/compiler
(* parser.sml * * COPYRIGHT (c) 2010 The Diderot Project (http://diderot.cs.uchicago.edu) * All rights reserved. * * Parser glue. *) structure Parser : sig (* parse a file; return NONE if there are syntax errors *) val parseFile : (Error.err_stream * TextIO.instream) -> ParseTree.program option end = struct (* glue together the lexer and parser *) structure DiderotParser = DiderotParseFn(DiderotLex) (* error function for lexers *) fun lexErr errStrm (pos, msg) = Error.errorAt(errStrm, (pos, pos), msg) (* error function for parsers *) val parseErr = Error.parseError DiderotTokens.toString (* parse a file, returning a parse tree *) fun parseFile (errStrm, file) = let fun get () = TextIO.input file val lexer = DiderotLex.lex (Error.sourceMap errStrm) (lexErr errStrm) in case DiderotParser.parse lexer (DiderotLex.streamify get) of (SOME pt, _, []) => (TextIO.closeIn file; SOME pt) | (_, _, errs) => ( TextIO.closeIn file; List.app (parseErr errStrm) errs; NONE) (* end case *) end end
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |