From 96192417d8f982b4caf882127c4a7b5e8f331beb Mon Sep 17 00:00:00 2001 From: David Majda Date: Wed, 14 Sep 2011 12:35:21 +0200 Subject: [PATCH] test/compiler-test.js: Remove extra comma Fixes the following JSHint error: ./test/compiler-test.js: line 498, col 49, Extra comma. --- test/compiler-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/compiler-test.js b/test/compiler-test.js index a40579f..72976d0 100644 --- a/test/compiler-test.js +++ b/test/compiler-test.js @@ -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");