Skip to content

Commit

Permalink
🐛 Fix a parse failure of XXX of \x:XXX.x
Browse files Browse the repository at this point in the history
  • Loading branch information
aiya000 committed Jul 25, 2018
1 parent 5729eeb commit 4436382
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Sonoda/Parser.y
Expand Up @@ -34,10 +34,10 @@ import Sonoda.Types
'\\' { (TokenBackslash, _) }
':' { (TokenColon, _) }
'.' { (TokenDot, _) }
ident { (TokenAnIdent $$, _) }
"->" { (TokenArrow, _) }
natType { (TokenAnIdent "Nat", _) }
boolType { (TokenAnIdent "Bool", _) }
ident { (TokenAnIdent $$, _) }

%%

Expand Down

0 comments on commit 4436382

Please sign in to comment.