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