1
0
Fork 0

Fixed trailing comma issue in test

- Caused problems in IE6
- Comma stripping script did not catch it due to trailing comments
closure/master
Mike Gerwitz 2011-12-04 13:06:28 -05:00
parent 1a3b5f2893
commit e86ed63fd8
1 changed files with 2 additions and 3 deletions

View File

@ -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++ )