SCM Repository
[diderot] / trunk / src / parser / parser.sml |
View of /trunk/src/parser/parser.sml
Parent Directory
|
Revision Log
Revision 14 -
(download)
(annotate)
Tue Jan 12 23:03:22 2010 UTC (11 years ago) by jhr
File size: 1089 byte(s)
Tue Jan 12 23:03:22 2010 UTC (11 years ago) by jhr
File size: 1089 byte(s)
Starting to work on parser for Diderot
(* 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 |