We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CommentParser
For the comment ended by \r\n in windows:
//This is a line comment\r\n
in Linux, ended by \n
//This is a line comment\n
The parser capture: In linux: This is a line comment In Windows: This is a line comment\r
This is a line comment
This is a line comment\r
That is because the line:
from rest in Parse.CharExcept(NewLine).Many().Text() //NewLine= "\n"
It's best to handle NeLine in CommentParser class for Linux/Windows Environment at Runtime.
NeLine
The text was updated successfully, but these errors were encountered:
Fix CommentParser eol issue sprache#184
86db56d
Successfully merging a pull request may close this issue.
For the comment ended by \r\n in windows:
in Linux, ended by \n
The parser capture:
In linux:
This is a line comment
In Windows:
This is a line comment\r
That is because the line:
It's best to handle
NeLine
inCommentParser
class for Linux/Windows Environment at Runtime.The text was updated successfully, but these errors were encountered: