We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7c9239 commit 7633749Copy full SHA for 7633749
lib/Parser.js
@@ -698,7 +698,8 @@ Parser.prototype.parse = function parse(source, initialState) {
698
definitions: []
699
};
700
var state = this.state = initialState || {};
701
- this.walkStatements(ast.body);
+ if(this.applyPluginsBailResult("program", ast) === undefined)
702
+ this.walkStatements(ast.body);
703
this.scope = oldScope;
704
this.state = oldState;
705
return state;
0 commit comments