SCM Repository
View of /branches/vis12/src/compiler/parser/parser.sml
Parent Directory
|
Revision Log
Revision 435 -
(download)
(annotate)
Tue Oct 19 13:14:20 2010 UTC (10 years, 6 months ago) by jhr
Original Path: trunk/src/compiler/parser/parser.sml
File size: 1098 byte(s)
Tue Oct 19 13:14:20 2010 UTC (10 years, 6 months ago) by jhr
Original Path: trunk/src/compiler/parser/parser.sml
File size: 1098 byte(s)
Upated URL in header to diderot-language.cs.uchicago.edu
(* parser.sml * * COPYRIGHT (c) 2010 The Diderot Project (http://diderot-language.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 |