[type] Parser [grammar] grammar T; a : ID+ { }; ID : 'a'..'z'+; WS : (' '|'\n') -> skip; [start] a [input] a b c [output] """abc """