Created
April 30, 2012 01:11
-
-
Save cobbweb/2554649 to your computer and use it in GitHub Desktop.
Inject yylineno into AST nodes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var parser = require('./parser'); | |
parser._performAction = parser.performAction; | |
parser.performAction = function anonymous(yytext,yyleng,yylineno,yy,yystate,$$,_$) { | |
var ret = parser._performAction.call(this, yytext, yyleng, yylineno, yy, yystate, $$, _$); | |
// do stuff | |
if (this.$._type) { | |
this.$.lineNo = yylineno; | |
} | |
return ret; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment