Generate tests

This commit is contained in:
Leonardo Balter 2017-03-14 12:40:15 -04:00
parent 659d82ded4
commit 368d483490
No known key found for this signature in database
GPG Key ID: 4191D7EB5EC82FF7
6 changed files with 18 additions and 6 deletions

View File

@ -17,7 +17,9 @@ info: |
BindingPattern passing rval and undefined as arguments.
---*/
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 vals = [ , ];

View File

@ -17,7 +17,9 @@ info: |
BindingPattern passing rval and undefined as arguments.
---*/
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 vals = [undefined];

View File

@ -17,7 +17,9 @@ info: |
BindingPattern passing rval and undefined as arguments.
---*/
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 vals = [];

View File

@ -26,7 +26,9 @@ info: |
[...]
---*/
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;

View File

@ -26,7 +26,9 @@ info: |
[...]
---*/
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;

View File

@ -26,7 +26,9 @@ info: |
[...]
---*/
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;