[type]
Parser

[grammar]
grammar T;
a : A {<writeln("$A.text")>} ;
A : ~'b' ;

[start]
a

[input]
x

[output]
"""x
"""

