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
Currently, in PL, the token SYMBOL_NAME (
PL
SYMBOL_NAME
pylogics/pylogics/parsers/pl.lark
Line 31 in 0c7626e
SYMBOL_NAME: /[a-z][a-z0-9_]*|"\w+"/
However, this is a strict subset of the symbols acceptable by the standard at version v0.2.0. In particular:
"\w+"
"[^\"\n\t\r]"
'
'[^\'\n\t\r]'
pylogics
0.1.0
TBD
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Subject of the issue
Currently, in
PL
, the tokenSYMBOL_NAME
(pylogics/pylogics/parsers/pl.lark
Line 31 in 0c7626e
However, this is a strict subset of the symbols acceptable by the standard at version v0.2.0. In particular:
"\w+"
, it should be"[^\"\n\t\r]"
'
as quoting symbol, i.e.'[^\'\n\t\r]'
Your environment
pylogics
:0.1.0
Steps to reproduce
TBD
Expected behaviour
TBD
Actual behaviour
TBD
The text was updated successfully, but these errors were encountered: