From e93eaa0e0ec5778f03b3b49f05b94979bac72ff9 Mon Sep 17 00:00:00 2001 From: David Majda Date: Wed, 14 Sep 2011 12:32:53 +0200 Subject: [PATCH] test/compiler-test.js: Add missing semicolon Fixes the following JSHint error: ./test/compiler-test.js: line 420, col 47, Missing semicolon. --- 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 839e164..a40579f 100644 --- a/test/compiler-test.js +++ b/test/compiler-test.js @@ -417,7 +417,7 @@ test("start rule", function() { /* Invalid rule name */ raises( - function() { parser.parse("whatever", "c") }, + function() { parser.parse("whatever", "c"); }, function(e) { return e instanceof Error && e.message === "Invalid rule name: \"c\"."; }