We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d3e406 commit 5afff30Copy full SHA for 5afff30
src/PureScript/CST/Lexer.purs
@@ -293,9 +293,9 @@ bumpToken pos@{ line, column } = case _ of
293
TokOperator qual sym ->
294
{ line, column: column + qualLength qual + String.length sym }
295
TokSymbolName qual sym ->
296
- { line, column: column + qualLength qual + String.length sym }
+ { line, column: column + qualLength qual + String.length sym + 2 }
297
TokSymbolArrow Unicode ->
298
- { line, column: column + 1 }
+ { line, column: column + 3 }
299
TokSymbolArrow ASCII ->
300
{ line, column: column + 4 }
301
TokHole hole ->
0 commit comments