mirror of
https://github.com/tc39/test262.git
synced 2025-05-03 14:30:27 +02:00
* [javascriptcore-test262-automation] changes from git@github.com:WebKit/webkit.git at sha 949e26452cfa153a7f4afe593da97e2fe9e1b706 on Tue Jul 03 2018 14:35:15 GMT-0400 (Eastern Daylight Time)
199 lines
4.9 KiB
JavaScript
199 lines
4.9 KiB
JavaScript
var testCase = function (actual, expected, message) {
|
|
if (actual !== expected) {
|
|
throw message + ". Expected '" + expected + "', but was '" + actual + "'";
|
|
}
|
|
};
|
|
|
|
var testValue = 'test-value';
|
|
var testIdValue = 'test-id-value';
|
|
|
|
var A = class A {
|
|
constructor() {
|
|
this.idValue = testValue;
|
|
}
|
|
};
|
|
|
|
var B = class B extends A {
|
|
constructor (beforeSuper) {
|
|
|
|
var arrow = () => eval('(() => super())()');
|
|
|
|
if (beforeSuper) {
|
|
arrow();
|
|
testCase(this.idValue, testValue, "Error: super() should create this and put value into idValue property");
|
|
} else {
|
|
testCase(this.idValue, testValue, "Error: has to be TDZ error");
|
|
arrow();
|
|
}
|
|
}
|
|
};
|
|
|
|
var C = class C extends A {
|
|
constructor () {
|
|
var arrow = () => eval('(() => super())()');
|
|
arrow();
|
|
return {
|
|
value : 'constructor-value'
|
|
};
|
|
}
|
|
};
|
|
|
|
var D = class D extends A {
|
|
constructor () {
|
|
var arrow = () => eval('(() => super())()');
|
|
arrow();
|
|
eval('this.id="new-value"');
|
|
}
|
|
};
|
|
|
|
var E = class E extends A {
|
|
constructor () {
|
|
var arrow = () => eval("eval('(() => super())()')");
|
|
arrow();
|
|
eval('eval("this.id=\'new-value\'")');
|
|
}
|
|
};
|
|
|
|
|
|
for (var i=0; i < 1000; i++) {
|
|
new B(true);
|
|
var c = new C();
|
|
testCase(c.value, 'constructor-value', 'Error during set value in eval #1.0');
|
|
testCase(typeof c.id, 'undefined', 'Error during set value in eval #1.1');
|
|
var d = new D();
|
|
testCase(d.idValue, testValue, 'Error during set value in eval #2.0');
|
|
testCase(d.id, 'new-value', 'Error during set value in eval #2.1');
|
|
var e = new E();
|
|
testCase(e.idValue, testValue, 'Error during set value in eval #3.0');
|
|
testCase(e.id, 'new-value', 'Error during set value in eval #3.0');
|
|
}
|
|
|
|
var testException = function (Klass, value, index) {
|
|
var exception;
|
|
try {
|
|
new Klass(value);
|
|
} catch (e) {
|
|
exception = e;
|
|
if (!(e instanceof ReferenceError))
|
|
throw "Exception thrown was not a reference error";
|
|
}
|
|
|
|
if (!exception)
|
|
throw "Exception not thrown for an unitialized this at iteration #" + index;
|
|
}
|
|
|
|
for (var i=0; i < 1000; i++) {
|
|
testException(B, false, i);
|
|
}
|
|
|
|
class F extends A {
|
|
constructor() {
|
|
var arr_after = () => {
|
|
this.idValue = 'this-value';
|
|
};
|
|
var arr_before = () => {
|
|
return 'not-some-value';
|
|
};
|
|
arr_before();
|
|
super();
|
|
arr_after();
|
|
}
|
|
}
|
|
|
|
let f = new F();
|
|
testCase(f.idValue, 'this-value', 'Error: not correct binding of this in constructor');
|
|
|
|
class G extends A {
|
|
constructor() {
|
|
var arr_simple = () => {
|
|
return 'not-some-value';
|
|
};
|
|
var arr_super = () => {
|
|
super();
|
|
};
|
|
arr_simple();
|
|
arr_super();
|
|
}
|
|
}
|
|
|
|
let g = new G();
|
|
testCase(g.idValue, testValue, 'Error: not correct binding super&this in constructor');
|
|
|
|
class A_this_Prop extends A {
|
|
getValue () {
|
|
return this.idValue;
|
|
}
|
|
}
|
|
|
|
class H extends A_this_Prop {
|
|
constructor() {
|
|
var arr_simple = () => {
|
|
return 'not-some-value';
|
|
};
|
|
var arr_super = () => {
|
|
super();
|
|
};
|
|
var arr_value = () => super.getValue();
|
|
arr_simple();
|
|
arr_super();
|
|
this.someValue = arr_value();
|
|
}
|
|
}
|
|
|
|
let h = new H();
|
|
testCase(h.someValue, testValue, 'Error: not correct binding superProperty&this in constructor');
|
|
|
|
class I extends A {
|
|
constructor (beforeSuper) {
|
|
if (beforeSuper) {
|
|
eval('(() => super())()');
|
|
testCase(this.idValue, testValue, "Error: super() should create this and put value into idValue property");
|
|
} else {
|
|
this.idValue = 'testValue';
|
|
eval('(() => super())()');
|
|
}
|
|
}
|
|
};
|
|
|
|
let ic = new I(true);
|
|
testCase(ic.idValue, testValue, 'Error: not correct binding superProperty&this in constructor');
|
|
|
|
for (var i=0; i < 1000; i++) {
|
|
testException(I, false, i);
|
|
}
|
|
|
|
class J extends A {
|
|
constructor (beforeSuper) {
|
|
if (beforeSuper) {
|
|
const arr = () => { eval('super()'); this._id = testIdValue; };
|
|
arr();
|
|
}
|
|
testCase(this.idValue, testValue, "Error: super() should create this and put value into idValue property");
|
|
}
|
|
};
|
|
|
|
let jc = new J(true);
|
|
testCase(jc.idValue, testValue, 'Error: not correct binding superProperty&this in constructor');
|
|
|
|
for (var i=0; i < 1000; i++) {
|
|
testException(J, false, i);
|
|
}
|
|
|
|
class K extends A {
|
|
constructor (beforeSuper) {
|
|
if (beforeSuper) {
|
|
const arr = () => { (() => () => eval('super()'))()(); (() => { this._id = testIdValue; })(); };
|
|
arr();
|
|
}
|
|
testCase(this.idValue, testValue, "Error: super() should create this and put value into idValue property");
|
|
}
|
|
};
|
|
|
|
let kc = new K(true);
|
|
testCase(kc.idValue, testValue, 'Error: not correct binding superProperty&this in constructor');
|
|
|
|
for (var i=0; i < 1000; i++) {
|
|
testException(K, false, i);
|
|
}
|
|
|