You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
904 B
JavaScript

PEG.compiler = {
/*
* Generates a parser from a specified grammar AST. Throws |PEG.GrammarError|
* if the AST contains a semantic error. Note that not all errors are detected
* during the generation and some may protrude to the generated parser and
* cause its malfunction.
*/
compile: function(ast) {
var CHECK_NAMES = [
"reportMissingReferencedRules",
"reportLeftRecursion"
];
var PASS_NAMES = [
"removeProxyRules",
"computeStackDepths"
];
var i;
for (i = 0; i < CHECK_NAMES.length; i++) {
this.checks[CHECK_NAMES[i]](ast);
}
for (i = 0; i < PASS_NAMES.length; i++) {
ast = this.passes[PASS_NAMES[i]](ast);
}
var source = this.emitter(ast);
var result = eval(source);
result._source = source;
return result;
}
};
// @include "checks.js"
// @include "passes.js"
// @include "emitter.js"