Skip to content

Commit ac53efa

Browse files
committed
Fix lexing of underscores
1 parent 2b3c78a commit ac53efa

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/PureScript/CST/Lexer.purs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,8 @@ token =
398398
case ident of
399399
"forall" ->
400400
TokForall ASCII
401+
"_" ->
402+
TokUnderscore
401403
_ ->
402404
TokLowerName Nothing ident
403405
moduleName ->

0 commit comments

Comments
 (0)