From 8b2edd3c415c9107aefae725eedf7e3be3892f93 Mon Sep 17 00:00:00 2001 From: David Majda Date: Sun, 21 Aug 2011 15:04:56 +0200 Subject: [PATCH] Remove trailing comma in parser tests (IE compatibility) --- test/parser-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parser-test.js b/test/parser-test.js index 8bccdb0..77e9eb4 100644 --- a/test/parser-test.js +++ b/test/parser-test.js @@ -154,7 +154,7 @@ var initializerGrammar = { type: "grammar", initializer: initializer(" code "), rules: { - a: rule("a", null, literalAbcd), + a: rule("a", null, literalAbcd) }, startRule: "a" };