test/compiler-test.js: Remove extra comma

Fixes the following JSHint error:

  ./test/compiler-test.js: line 498, col 49, Extra comma.
redux
David Majda 13 years ago
parent e93eaa0e0e
commit 96192417d8

@ -495,7 +495,7 @@ test("non-context-free language", function() {
var parser = PEG.buildParser([
'S = &(A "c") a:"a"+ B:B !("a" / "b" / "c") { return a.join("") + B; }',
'A = a:"a" A:A? b:"b" { return a + A + b; }',
'B = b:"b" B:B? c:"c" { return b + B + c; }',
'B = b:"b" B:B? c:"c" { return b + B + c; }'
].join("\n"));
parses(parser, "abc", "abc");

Loading…
Cancel
Save