From e86ed63fd83872e71b1b81e3e096faf5dea941e1 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Sun, 4 Dec 2011 13:06:28 -0500 Subject: [PATCH] Fixed trailing comma issue in test - Caused problems in IE6 - Comma stripping script did not catch it due to trailing comments --- test/MemberBuilderValidator/inc-common.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/MemberBuilderValidator/inc-common.js b/test/MemberBuilderValidator/inc-common.js index 305a9e2..8b33a3e 100644 --- a/test/MemberBuilderValidator/inc-common.js +++ b/test/MemberBuilderValidator/inc-common.js @@ -138,13 +138,12 @@ exports.quickKeywordTest = function( type, keywords, identifier, prev ) */ exports.visEscalationTest = function( test ) { + // note: private/private is intentionally omitted; see private naming + // conflict test var tests = [ [ 'protected', 'public' ], [ 'public', 'public' ], [ 'protected', 'protected' ], - - // note: private/private is intentionally omitted; see private naming - // conflict test ]; for ( var i = 0, len = tests.length; i < len; i++ )