Yard, still struggling with Clean build system
[cc1516.git] / parse.dcl
1 definition module parse
2
3 import lex
4
5 :: ParserOutput :== Either String AST
6 :: AST = If | While //stub
7 :: Error = ParseException
8
9 parse :: LexerOutput -> ParserOutput