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
Given the following grammar:
DOUBLE_STAR: 'A'* 'A'* 'A';
Enclosed-transition A should not contain ANTLR node of the third token:
A
digraph ATN { rankdir=LR; "DEFAULT_MODE(s0)" -> s12 [label="A {3:15(1), 3:20(1), 3:25(1)}"] s12 -> s12 [label="A {3:15(1), 3:20(1)}" taillabel=0] s12 -> s11 [label="end(DOUBLE_STAR)" taillabel=1 style=dotted] }
digraph ATN { rankdir=LR; "DEFAULT_MODE(s0)" -> s12 [label="A {3:15(1), 3:20(1), 3:25(1)}"] s12 -> s12 [label="A {3:15(1), 3:20(1), 3:25(1)}" taillabel=0] s12 -> s11 [label="end(DOUBLE_STAR)" taillabel=1 style=dotted] }
The text was updated successfully, but these errors were encountered:
KvanTTT
No branches or pull requests
Given the following grammar:
Enclosed-transition
A
should not contain ANTLR node of the third token:Expected ATN
Actual ATN
The text was updated successfully, but these errors were encountered: