14 lines
210 B
Plaintext
14 lines
210 B
Plaintext
lexer grammar t040bug80;
|
|
options {
|
|
language = Python3;
|
|
}
|
|
|
|
ID_LIKE
|
|
: 'defined'
|
|
| {False}? Identifier
|
|
| Identifier
|
|
;
|
|
|
|
fragment
|
|
Identifier: 'a'..'z'+ ; // with just 'a', output compiles
|