Fixed trailing comma issue in test
- Caused problems in IE6 - Comma stripping script did not catch it due to trailing commentsclosure/master
parent
1a3b5f2893
commit
e86ed63fd8
|
@ -138,13 +138,12 @@ exports.quickKeywordTest = function( type, keywords, identifier, prev )
|
||||||
*/
|
*/
|
||||||
exports.visEscalationTest = function( test )
|
exports.visEscalationTest = function( test )
|
||||||
{
|
{
|
||||||
|
// note: private/private is intentionally omitted; see private naming
|
||||||
|
// conflict test
|
||||||
var tests = [
|
var tests = [
|
||||||
[ 'protected', 'public' ],
|
[ 'protected', 'public' ],
|
||||||
[ 'public', 'public' ],
|
[ 'public', 'public' ],
|
||||||
[ 'protected', 'protected' ],
|
[ 'protected', 'protected' ],
|
||||||
|
|
||||||
// note: private/private is intentionally omitted; see private naming
|
|
||||||
// conflict test
|
|
||||||
];
|
];
|
||||||
|
|
||||||
for ( var i = 0, len = tests.length; i < len; i++ )
|
for ( var i = 0, len = tests.length; i < len; i++ )
|
||||||
|
|
Loading…
Reference in New Issue