[type] Parser [grammar] grammar T; s : a+ ; a : {}? ID {} | {}? ID {} ; ID : 'a'..'z'+ ; INT : '0'..'9'+; WS : (' '|'\n') -> skip ; [start] s [input] x x y [output] alt 2 alt 2 alt 2