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.
34 lines
996 B
JavaScript
34 lines
996 B
JavaScript
"use strict";
|
|
|
|
let GrammarError = require("../../grammar-error");
|
|
let asts = require("../asts");
|
|
let 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 reportInfiniteRepetition(ast) {
|
|
let check = visitor.build({
|
|
zero_or_more(node) {
|
|
if (!asts.alwaysConsumesOnSuccess(ast, node.expression)) {
|
|
throw new GrammarError(
|
|
"Possible infinite loop when parsing (repetition used with an expression that may not consume any input).",
|
|
node.location
|
|
);
|
|
}
|
|
},
|
|
|
|
one_or_more(node) {
|
|
if (!asts.alwaysConsumesOnSuccess(ast, node.expression)) {
|
|
throw new GrammarError(
|
|
"Possible infinite loop when parsing (repetition used with an expression that may not consume any input).",
|
|
node.location
|
|
);
|
|
}
|
|
}
|
|
});
|
|
|
|
check(ast);
|
|
}
|
|
|
|
module.exports = reportInfiniteRepetition;
|