[type] Parser [grammar] grammar T; a : (A {})+ ; A : [AaBb] ; WS : (' '|'\n')+ -> skip ; [start] a [input] A a B b [output] A a B b