Searched refs:xlog (Results 1 – 16 of 16) sorted by relevance
7 this.xlog = [];13 this.xlog = [];14 this.xlog.push("init;");17 this.xlog.push("after;");22 this.xlog.push("catch;");26 this.xlog.push("finally;");34 this.xlog.push("action;");35 this.xlog.push([$text, $type, $line, $pos, $index, $channel, $start, $stop].join(" "));37 this.xlog.push(this.foobar);
7 var xlog = [];12 xlog.push($t.text);13 xlog.push($t.type);14 xlog.push($t.line);15 xlog.push($t.pos);16 xlog.push($t.channel);17 xlog.push($t.index);
34 function xlog(msg) {49 MyLexer.prototype.emitErrorMessage = function(msg) {xlog(msg);}50 PythonParser.prototype.emitErrorMessage = function(msg) {xlog(msg);}65 xlog(e.toString());
4 B : x='a' {this.xlog($x);} ;
3 a : A EOF {this.xlog(this.input);} ;
3 a : A {this.xlog(this.input);} ;
4 A : I {this.xlog($I.text);} ;
3 a : A EOF {this.xlog($A.text+", channel="+$A.channel);} ;
4 a : X EOF {this.xlog(this.input);} ;
4 A : 'hi' WS (v=I)? {$channel=0; this.xlog($v.text);} ;
4 A : i+=I+ { for (var p=0; p<$i.length; p++) this.xlog(" "+$i[p].getText()); } ;
4 A : i+=I WS i+=I {$channel=0; for (var p=0; p<$i.length; p++) this.xlog(" "+$i[p].getText()); } ;
92 {xlog("found method def "+$NAME.text);}364 {xlog("found class def "+$NAME.text);}
41 #define XLOG xlog44 xlog( const char* format, ... ) in xlog() function