mirror of https://github.com/tc39/test262.git
parent
340543bc11
commit
659d82ded4
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue