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