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
var lexer = new NCalcLexer(new ANTLRStringStream("GET([Area].Area)")); var input = new BufferedTokenStream(lexer);
Input : GET([Area].Area)
Old - ANTLR3.Runtime - 3.3.0.7239 output from BufferedTokenStream: GET([Area]Area) Exception message is : extraneous input 'Area' expecting ')'
GET([Area]Area)
new - ANTLR3.Runtime 3.5.1 output from BufferedTokenStream: GET([Area]rea) Exception message is : extraneous input 'rea' expecting ')'
GET([Area]rea)
Why these differences in old and new version?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Input : GET([Area].Area)
Old - ANTLR3.Runtime - 3.3.0.7239
output from BufferedTokenStream:
GET([Area]Area)
Exception message is : extraneous input 'Area' expecting ')'
new - ANTLR3.Runtime 3.5.1
output from BufferedTokenStream:
GET([Area]rea)
Exception message is : extraneous input 'rea' expecting ')'
Why these differences in old and new version?
The text was updated successfully, but these errors were encountered: