com-lihaoyi / fastparse

Writing Fast Parsers Fast in Scala
https://com-lihaoyi.github.io/fastparse
MIT License
1.09k stars 164 forks source link

Fix line and column number reporting for Windows newlines #282

Closed lihaoyi closed 1 year ago

lihaoyi commented 1 year ago

Previous implementation of lineNumberLookup only worked for single \n or \r newlines. This PR fixes it so it also works for \n\r or \r\n newlines and adds some basic tests