blob: 04ce14c4c4e868ce214e3d19b1e2ccacc94568e0 [file] [log] [blame]
grammar t036multipleReturnValues;
options {
language = Python;
}
a returns [foo, bar]: A
{
$foo = "foo";
$bar = "bar";
}
;
A: 'a'..'z';
WS :
( ' '
| '\t'
| ( '\n'
| '\r\n'
| '\r'
)
)+
{ $channel = HIDDEN }
;