28 lines
735 B
JavaScript
28 lines
735 B
JavaScript
|
var GrammarError = require("../../grammar-error"),
|
||
|
asts = require("../asts"),
|
||
|
visitor = require("../visitor");
|
||
|
|
||
|
/*
|
||
|
* Reports expressions that don't consume any input inside |*| or |+| in the
|
||
|
* grammar, which prevents infinite loops in the generated parser.
|
||
|
*/
|
||
|
function reportInfiniteLoops(ast) {
|
||
|
var check = visitor.build({
|
||
|
zero_or_more: function(node) {
|
||
|
if (asts.matchesEmpty(ast, node.expression)) {
|
||
|
throw new GrammarError("Infinite loop detected.");
|
||
|
}
|
||
|
},
|
||
|
|
||
|
one_or_more: function(node) {
|
||
|
if (asts.matchesEmpty(ast, node.expression)) {
|
||
|
throw new GrammarError("Infinite loop detected.");
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
|
||
|
check(ast);
|
||
|
}
|
||
|
|
||
|
module.exports = reportInfiniteLoops;
|