Skip to content

Instantly share code, notes, and snippets.

@cobbweb
Created April 30, 2012 01:11
Show Gist options
  • Save cobbweb/2554649 to your computer and use it in GitHub Desktop.
Save cobbweb/2554649 to your computer and use it in GitHub Desktop.
Inject yylineno into AST nodes
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