[type] Parser [grammar] grammar T; a : C {} ; fragment A : '1' | '2'; fragment B : '3' '4'; C : A | B; [start] a [input] 34 [output] """34 """