X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=parse.icl;h=1a7fb85b24c7e09d66ee10c42e425661acc26940;hb=87fe087ef7e1ad9deff8a725faf1ebbefcb7e549;hp=3344e27bdbe717a7d7ccf77f9f561440947ce736;hpb=953019d8255b9779d67fb1cb6c8946f589a24936;p=cc1516.git diff --git a/parse.icl b/parse.icl index 3344e27..1a7fb85 100644 --- a/parse.icl +++ b/parse.icl @@ -1,9 +1,10 @@ implementation module parse import StdString +import yard import lex parse :: LexerOutput -> ParserOutput parse (Left e) = Left ("Lexer error: " +++ e) -parse (Right r) = Left "Parser not yet implemented" +parse (Right r) = Left "Parser not yet implemented" \ No newline at end of file