Rename top level 'length' bindings from test generation cases

Ref #850
This commit is contained in:
Leonardo Balter 2017-03-14 12:27:04 -04:00
parent 340543bc11
commit 659d82ded4
No known key found for this signature in database
GPG Key ID: 4191D7EB5EC82FF7
3 changed files with 9 additions and 3 deletions

View File

@ -12,7 +12,9 @@ es6id: 12.14.5.3
//- setup
var x = null;
var length;
// Use the the top-level lexical scope for 'length' to provide compatibility with browsers
// where length and name are properties of WindowProxy
let length;
//- elems
[...{ 0: x, length }]
//- vals

View File

@ -12,7 +12,9 @@ es6id: 12.14.5.3
//- setup
var x = null;
var length;
// Use the the top-level lexical scope for 'length' to provide compatibility with browsers
// where length and name are properties of WindowProxy
let length;
//- elems
[...{ 0: x, length }]
//- vals

View File

@ -12,7 +12,9 @@ es6id: 12.14.5.3
//- setup
var x = null;
var length;
// Use the the top-level lexical scope for 'length' to provide compatibility with browsers
// where length and name are properties of WindowProxy
let length;
//- elems
[...{ 0: x, length }]
//- vals