You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 25, 2021. It is now read-only.
I discovered while traversing a produced AST that the node positions extended beyond the length of the file, nearly doubling the line length. After poking around and testing a hypothesis, I discovered that by normalizing lines endings to "\n", the line count returned to normal.
Operating System: Windows (works as expected on Mac)
Line ending: Windows standard (\r\n)
JSON source in question:
{
"Snippet snippet": {
"prefix": "snippet",
"body": [
"\"$1\": {",
"\t\"prefix\": \"$2\",",
"\t\"body\": [",
"\t\t$3",
"\t],",
"\t\"description\": \"$4\"",
"},"
],
"description": "A snippet for creating new snippets"
}
}
The normalization fix I applied in my parser abstraction is as follows:
I know this project is old, and potentially unmaintained, but I figured this issue would, at least, help someone else if they encountered a similar issue.
Thank you for building this.
Cheers!
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I discovered while traversing a produced AST that the node positions extended beyond the length of the file, nearly doubling the line length. After poking around and testing a hypothesis, I discovered that by normalizing lines endings to "\n", the line count returned to normal.
Operating System: Windows (works as expected on Mac)
Line ending: Windows standard (\r\n)
JSON source in question:
The normalization fix I applied in my parser abstraction is as follows:
I know this project is old, and potentially unmaintained, but I figured this issue would, at least, help someone else if they encountered a similar issue.
Thank you for building this.
Cheers!
The text was updated successfully, but these errors were encountered: