Add parser for type annotations

This commit is contained in:
Gabriel Gonzalez 2016-09-08 17:04:29 -07:00
parent c5967955f9
commit cc0c1f756f

View File

@ -137,6 +137,10 @@ expr = mdo
<$> some letExpr
<*> (match Lexer.In *> expr)
)
<|> ( Annot
<$> bexpr
<*> (match Lexer.Colon *> expr)
)
)
letExpr <- rule