mirror of https://github.com/tc39/test262.git
Generate tests
This commit is contained in:
parent
659d82ded4
commit
368d483490
|
@ -17,7 +17,9 @@ info: |
|
||||||
BindingPattern passing rval and undefined as arguments.
|
BindingPattern passing rval and undefined as arguments.
|
||||||
---*/
|
---*/
|
||||||
var x = null;
|
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;
|
||||||
|
|
||||||
var result;
|
var result;
|
||||||
var vals = [ , ];
|
var vals = [ , ];
|
||||||
|
|
|
@ -17,7 +17,9 @@ info: |
|
||||||
BindingPattern passing rval and undefined as arguments.
|
BindingPattern passing rval and undefined as arguments.
|
||||||
---*/
|
---*/
|
||||||
var x = null;
|
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;
|
||||||
|
|
||||||
var result;
|
var result;
|
||||||
var vals = [undefined];
|
var vals = [undefined];
|
||||||
|
|
|
@ -17,7 +17,9 @@ info: |
|
||||||
BindingPattern passing rval and undefined as arguments.
|
BindingPattern passing rval and undefined as arguments.
|
||||||
---*/
|
---*/
|
||||||
var x = null;
|
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;
|
||||||
|
|
||||||
var result;
|
var result;
|
||||||
var vals = [];
|
var vals = [];
|
||||||
|
|
|
@ -26,7 +26,9 @@ info: |
|
||||||
[...]
|
[...]
|
||||||
---*/
|
---*/
|
||||||
var x = null;
|
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;
|
||||||
|
|
||||||
var counter = 0;
|
var counter = 0;
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,9 @@ info: |
|
||||||
[...]
|
[...]
|
||||||
---*/
|
---*/
|
||||||
var x = null;
|
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;
|
||||||
|
|
||||||
var counter = 0;
|
var counter = 0;
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,9 @@ info: |
|
||||||
[...]
|
[...]
|
||||||
---*/
|
---*/
|
||||||
var x = null;
|
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;
|
||||||
|
|
||||||
var counter = 0;
|
var counter = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue