[type] Parser [grammar] grammar T; s @init { } @after { } : r=a ; a : b 'x' ; b : 'y' ; [start] s [input] yx [output] """(a (b y) x) """