Rebase, regenerate, and update tests

This commit is contained in:
Mathias Bynens 2018-10-19 11:09:40 +02:00
parent c59f671bda
commit 8869799c6d
105 changed files with 104 additions and 104 deletions

View File

@ -24,6 +24,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
let f = () => /*{ import }*/;

View File

@ -24,7 +24,7 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
let f = () => {
/*{ import }*/;

View File

@ -23,7 +23,7 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
(async () => {
await /*{ import }*/

View File

@ -23,6 +23,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
(async () => await /*{ import }*/)

View File

@ -24,7 +24,7 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
async function f() {
await /*{ import }*/;

View File

@ -24,7 +24,7 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
async function f() {
return await /*{ import }*/;

View File

@ -24,7 +24,7 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
async function f() {
/*{ import }*/;

View File

@ -23,7 +23,7 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
async function * f() {
await /*{ import }*/

View File

@ -24,7 +24,7 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
label: {
/*{ import }*/;

View File

@ -24,7 +24,7 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
{
/*{ import }*/;

View File

@ -24,7 +24,7 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
do {
/*{ import }*/;

View File

@ -24,7 +24,7 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
if (false) {

View File

@ -24,7 +24,7 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
if (false) {

View File

@ -24,7 +24,7 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
function fn() {
return /*{ import }*/;

View File

@ -24,7 +24,7 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
function fn() {
/*{ import }*/;

View File

@ -24,6 +24,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
if (true) /*{ import }*/;

View File

@ -24,7 +24,7 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
if (true) {
/*{ import }*/;

View File

@ -24,7 +24,7 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
let x = 0;
while (!x) {

View File

@ -25,7 +25,7 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
with ({}) {
/*{ import }*/;

View File

@ -14,6 +14,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
/*{ import }*/;

View File

@ -24,7 +24,7 @@ info: |
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
var C = class extends B
{

View File

@ -14,6 +14,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
arguments += 20;

View File

@ -13,6 +13,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
eval += 20;

View File

@ -14,6 +14,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
arguments &= 20;

View File

@ -13,6 +13,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
eval &= 20;

View File

@ -14,6 +14,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
arguments /= 20;

View File

@ -13,6 +13,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
eval /= 20;

View File

@ -14,6 +14,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
arguments <<= 20;

View File

@ -14,6 +14,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
eval <<= 20;

View File

@ -14,6 +14,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
arguments %= 20;

View File

@ -13,6 +13,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
eval %= 20;

View File

@ -14,6 +14,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
arguments *= 20;

View File

@ -13,6 +13,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
eval *= 20;

View File

@ -14,6 +14,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
arguments |= 20;

View File

@ -13,6 +13,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
eval |= 20;

View File

@ -14,6 +14,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
arguments >>= 20;

View File

@ -14,6 +14,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
eval >>= 20;

View File

@ -14,6 +14,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
arguments -= 20;

View File

@ -13,6 +13,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
eval -= 20;

View File

@ -14,6 +14,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
arguments >>>= 20;

View File

@ -14,6 +14,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
eval >>>= 20;

View File

@ -14,6 +14,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
arguments ^= 20;

View File

@ -13,6 +13,6 @@ negative:
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
eval ^= 20;

View File

@ -28,7 +28,7 @@ info: |
import( AssignmentExpression[+In, ?Yield] )
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
let f = () => {
import();

View File

@ -28,7 +28,7 @@ info: |
import( AssignmentExpression[+In, ?Yield] )
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
let f = () => import();

View File

@ -32,6 +32,6 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
let f = () => import('', '');

View File

@ -32,6 +32,6 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
let f = () => import('',);

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
let f = () => {
import('', '');

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
let f = () => {
import('',);

View File

@ -28,7 +28,7 @@ info: |
import( AssignmentExpression[+In, ?Yield] )
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
(async () => {
await import()

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
(async () => {
await import('', '')

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
(async () => {
await import('',)

View File

@ -28,7 +28,7 @@ info: |
import( AssignmentExpression[+In, ?Yield] )
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
(async () => await import())

View File

@ -32,6 +32,6 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
(async () => await import('', ''))

View File

@ -32,6 +32,6 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
(async () => await import('',))

View File

@ -28,7 +28,7 @@ info: |
import( AssignmentExpression[+In, ?Yield] )
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
async function f() {
import();

View File

@ -28,7 +28,7 @@ info: |
import( AssignmentExpression[+In, ?Yield] )
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
async function f() {
await import();

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
async function f() {
await import('', '');

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
async function f() {
await import('',);

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
async function f() {
import('', '');

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
async function f() {
import('',);

View File

@ -28,7 +28,7 @@ info: |
import( AssignmentExpression[+In, ?Yield] )
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
async function f() {
return await import();

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
async function f() {
return await import('', '');

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
async function f() {
return await import('',);

View File

@ -28,7 +28,7 @@ info: |
import( AssignmentExpression[+In, ?Yield] )
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
async function * f() {
await import()

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
async function * f() {
await import('', '')

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
async function * f() {
await import('',)

View File

@ -28,7 +28,7 @@ info: |
import( AssignmentExpression[+In, ?Yield] )
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
{
import();

View File

@ -28,7 +28,7 @@ info: |
import( AssignmentExpression[+In, ?Yield] )
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
label: {
import();

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
label: {
import('', '');

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
label: {
import('',);

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
{
import('', '');

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
{
import('',);

View File

@ -28,7 +28,7 @@ info: |
import( AssignmentExpression[+In, ?Yield] )
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
do {
import();

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
do {
import('', '');

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
do {
import('',);

View File

@ -28,7 +28,7 @@ info: |
import( AssignmentExpression[+In, ?Yield] )
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
if (false) {

View File

@ -28,7 +28,7 @@ info: |
import( AssignmentExpression[+In, ?Yield] )
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
if (false) {

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
if (false) {

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
if (false) {

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
if (false) {

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
if (false) {

View File

@ -28,7 +28,7 @@ info: |
import( AssignmentExpression[+In, ?Yield] )
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
function fn() {
import();

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
function fn() {
import('', '');

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
function fn() {
import('',);

View File

@ -28,7 +28,7 @@ info: |
import( AssignmentExpression[+In, ?Yield] )
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
function fn() {
return import();

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
function fn() {
return import('', '');

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
function fn() {
return import('',);

View File

@ -28,7 +28,7 @@ info: |
import( AssignmentExpression[+In, ?Yield] )
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
if (true) {
import();

View File

@ -28,7 +28,7 @@ info: |
import( AssignmentExpression[+In, ?Yield] )
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
if (true) import();

View File

@ -32,6 +32,6 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
if (true) import('', '');

View File

@ -32,6 +32,6 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
if (true) import('',);

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
if (true) {
import('', '');

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
if (true) {
import('',);

View File

@ -28,7 +28,7 @@ info: |
import( AssignmentExpression[+In, ?Yield] )
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
let x = 0;
while (!x) {

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
let x = 0;
while (!x) {

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
let x = 0;
while (!x) {

View File

@ -28,7 +28,7 @@ info: |
import( AssignmentExpression[+In, ?Yield] )
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
with ({}) {
import();

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
with ({}) {
import('', '');

View File

@ -32,7 +32,7 @@ info: |
- ImportCall must not be extended.
---*/
throw "Test262: This statement should not be evaluated.";
$DONOTEVALUATE();
with ({}) {
import('',);

Some files were not shown because too many files have changed in this diff Show More