Generate tests

This commit is contained in:
Leo Balter 2018-10-08 11:41:21 -04:00
parent 7ec5d801f0
commit 874f508077
17 changed files with 17 additions and 17 deletions

View File

@ -23,7 +23,7 @@ info: |
---*/
// This is still valid in script code, and should not be valid for module code
// https://tc39.github.io/ecma262/#sec-scripts-static-semantics-lexicallydeclarednames
var x; function x() {}
var smoosh; function smoosh() {}
let f = () => import('./script-code-valid.js');

View File

@ -23,7 +23,7 @@ info: |
---*/
// This is still valid in script code, and should not be valid for module code
// https://tc39.github.io/ecma262/#sec-scripts-static-semantics-lexicallydeclarednames
var x; function x() {}
var smoosh; function smoosh() {}
let f = () => {

View File

@ -23,7 +23,7 @@ info: |
---*/
// This is still valid in script code, and should not be valid for module code
// https://tc39.github.io/ecma262/#sec-scripts-static-semantics-lexicallydeclarednames
var x; function x() {}
var smoosh; function smoosh() {}
async function f() {

View File

@ -23,7 +23,7 @@ info: |
---*/
// This is still valid in script code, and should not be valid for module code
// https://tc39.github.io/ecma262/#sec-scripts-static-semantics-lexicallydeclarednames
var x; function x() {}
var smoosh; function smoosh() {}
async function f() {

View File

@ -23,7 +23,7 @@ info: |
---*/
// This is still valid in script code, and should not be valid for module code
// https://tc39.github.io/ecma262/#sec-scripts-static-semantics-lexicallydeclarednames
var x; function x() {}
var smoosh; function smoosh() {}
async function f() {

View File

@ -23,7 +23,7 @@ info: |
---*/
// This is still valid in script code, and should not be valid for module code
// https://tc39.github.io/ecma262/#sec-scripts-static-semantics-lexicallydeclarednames
var x; function x() {}
var smoosh; function smoosh() {}
label: {

View File

@ -23,7 +23,7 @@ info: |
---*/
// This is still valid in script code, and should not be valid for module code
// https://tc39.github.io/ecma262/#sec-scripts-static-semantics-lexicallydeclarednames
var x; function x() {}
var smoosh; function smoosh() {}
{

View File

@ -23,7 +23,7 @@ info: |
---*/
// This is still valid in script code, and should not be valid for module code
// https://tc39.github.io/ecma262/#sec-scripts-static-semantics-lexicallydeclarednames
var x; function x() {}
var smoosh; function smoosh() {}
do {

View File

@ -23,7 +23,7 @@ info: |
---*/
// This is still valid in script code, and should not be valid for module code
// https://tc39.github.io/ecma262/#sec-scripts-static-semantics-lexicallydeclarednames
var x; function x() {}
var smoosh; function smoosh() {}
if (false) {

View File

@ -23,7 +23,7 @@ info: |
---*/
// This is still valid in script code, and should not be valid for module code
// https://tc39.github.io/ecma262/#sec-scripts-static-semantics-lexicallydeclarednames
var x; function x() {}
var smoosh; function smoosh() {}
if (false) {

View File

@ -23,7 +23,7 @@ info: |
---*/
// This is still valid in script code, and should not be valid for module code
// https://tc39.github.io/ecma262/#sec-scripts-static-semantics-lexicallydeclarednames
var x; function x() {}
var smoosh; function smoosh() {}
function fn() {

View File

@ -23,7 +23,7 @@ info: |
---*/
// This is still valid in script code, and should not be valid for module code
// https://tc39.github.io/ecma262/#sec-scripts-static-semantics-lexicallydeclarednames
var x; function x() {}
var smoosh; function smoosh() {}
function fn() {

View File

@ -23,7 +23,7 @@ info: |
---*/
// This is still valid in script code, and should not be valid for module code
// https://tc39.github.io/ecma262/#sec-scripts-static-semantics-lexicallydeclarednames
var x; function x() {}
var smoosh; function smoosh() {}
if (true) import('./script-code-valid.js');

View File

@ -23,7 +23,7 @@ info: |
---*/
// This is still valid in script code, and should not be valid for module code
// https://tc39.github.io/ecma262/#sec-scripts-static-semantics-lexicallydeclarednames
var x; function x() {}
var smoosh; function smoosh() {}
if (true) {

View File

@ -23,7 +23,7 @@ info: |
---*/
// This is still valid in script code, and should not be valid for module code
// https://tc39.github.io/ecma262/#sec-scripts-static-semantics-lexicallydeclarednames
var x; function x() {}
var smoosh; function smoosh() {}
let x = 0;

View File

@ -23,7 +23,7 @@ info: |
---*/
// This is still valid in script code, and should not be valid for module code
// https://tc39.github.io/ecma262/#sec-scripts-static-semantics-lexicallydeclarednames
var x; function x() {}
var smoosh; function smoosh() {}
with ({}) {

View File

@ -13,7 +13,7 @@ info: |
---*/
// This is still valid in script code, and should not be valid for module code
// https://tc39.github.io/ecma262/#sec-scripts-static-semantics-lexicallydeclarednames
var x; function x() {}
var smoosh; function smoosh() {}
import('./script-code-valid.js');