Home | History | Annotate | Download | only in Antlr3.Runtime

Lines Matching refs:txt

198             string txt = Text;
199 if ( txt != null )
201 txt = txt.Replace( "\n", "\\\\n" );
202 txt = txt.Replace( "\r", "\\\\r" );
203 txt = txt.Replace( "\t", "\\\\t" );
207 txt = "<no text>";
209 return "[@" + TokenIndex + ",'" + txt + "',<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + "]";