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.
41 lines
901 B
JavaScript
41 lines
901 B
JavaScript
13 years ago
|
(function() {
|
||
|
|
||
|
module("PEG.compiler.passes.reportLeftRecursion");
|
||
|
|
||
|
test("reports left recursion", function() {
|
||
|
function testGrammar(grammar) {
|
||
|
raises(
|
||
|
function() {
|
||
|
var ast = PEG.parser.parse(grammar);
|
||
|
PEG.compiler.passes.reportLeftRecursion(ast);
|
||
|
},
|
||
|
function(e) {
|
||
|
return e instanceof PEG.GrammarError
|
||
|
&& e.message === "Left recursion detected for rule \"start\".";
|
||
|
}
|
||
|
);
|
||
|
}
|
||
|
|
||
|
var grammars = [
|
||
|
/* Direct */
|
||
|
'start = start',
|
||
|
'start = start / "a" / "b"',
|
||
|
'start = "a" / "b" / start',
|
||
|
'start = start "a" "b"',
|
||
|
'start = label:start',
|
||
|
'start = &start',
|
||
|
'start = !start',
|
||
|
'start = start?',
|
||
|
'start = start*',
|
||
|
'start = start+',
|
||
|
'start = start { }',
|
||
|
|
||
|
/* Indirect */
|
||
|
'start = stop; stop = start'
|
||
|
];
|
||
|
|
||
|
for (var i = 0; i < grammars.length; i++) { testGrammar(grammars[i]); }
|
||
|
});
|
||
|
|
||
|
})();
|