mirror of https://github.com/tc39/test262.git
Example output from legacy code transformer
This commit is contained in:
parent
b11c1607c0
commit
ab4a019a4d
|
@ -8,34 +8,27 @@ description: Create comments with any code
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
//CHECK#1
|
//CHECK#1
|
||||||
// $ERROR('#1: Correct interpretation single line comments');
|
// Test262Error.thrower('#1: Correct interpretation single line comments');
|
||||||
|
|
||||||
//CHECK#2
|
//CHECK#2
|
||||||
var x = 0;
|
var x = 0;
|
||||||
// x = 1;
|
assert.sameValue(x, 0, 'The value of `x` is 0');
|
||||||
if (x !== 0) {
|
|
||||||
$ERROR('#2: var x = 0; // x = 1; x === 0. Actual: ' + (x));
|
|
||||||
}
|
|
||||||
|
|
||||||
//CHECK#3
|
//CHECK#3
|
||||||
var // y = 1;
|
var // y = 1;
|
||||||
y;
|
y;
|
||||||
if (y !== undefined) {
|
assert.sameValue(y, undefined, 'The value of `y` is expected to equal `undefined`');
|
||||||
$ERROR('#3: var // y = 1; \\n y; y === undefined. Actual: ' + (y));
|
|
||||||
}
|
|
||||||
|
|
||||||
//CHECK#4
|
//CHECK#4
|
||||||
//$ERROR('#4: Correct interpretation single line comments') //$ERROR('#4: Correct interpretation single line comments'); //
|
//Test262Error.thrower('#4: Correct interpretation single line comments') //Test262Error.thrower('#4: Correct interpretation single line comments'); //
|
||||||
|
|
||||||
////CHECK#5
|
////CHECK#5
|
||||||
//var x = 1;
|
//var x = 1;
|
||||||
//if (x === 1) {
|
//if (x === 1) {
|
||||||
// $ERROR('#5: Correct interpretation single line comments');
|
// Test262Error.thrower('#5: Correct interpretation single line comments');
|
||||||
//}
|
//}
|
||||||
|
|
||||||
//CHECK#6
|
//CHECK#6
|
||||||
//var this.y = 1;
|
//var this.y = 1;
|
||||||
this.y++;
|
this.y++;
|
||||||
if (isNaN(y) !== true) {
|
assert.sameValue(isNaN(y), true, 'isNaN(y) returns true');
|
||||||
$ERROR('#6: //var this.y = 1; \\n this.y++; y === Not-a-Number. Actual: ' + (y));
|
|
||||||
}
|
|
||||||
|
|
|
@ -8,65 +8,53 @@ description: Create comments with any code
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
/*CHECK#1*/
|
/*CHECK#1*/
|
||||||
/* $ERROR('#1: Correct interpretation multi line comments');
|
/* Test262Error.thrower('#1: Correct interpretation multi line comments');
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*CHECK#2*/
|
/*CHECK#2*/
|
||||||
var x = 0;
|
var x = 0;
|
||||||
/* x = 1;*/
|
/* x = 1;*/
|
||||||
if (x !== 0) {
|
assert.sameValue(x, 0, 'The value of `x` is 0');
|
||||||
$ERROR('#2: var x = 0; /* x = 1;*/ x === 0. Actual: ' + (x));
|
|
||||||
}
|
|
||||||
|
|
||||||
//CHECK#3
|
//CHECK#3
|
||||||
var /* y = 1;*/
|
var /* y = 1;*/
|
||||||
y;
|
y;
|
||||||
if (y !== undefined) {
|
assert.sameValue(y, undefined, 'The value of `y` is expected to equal `undefined`');
|
||||||
$ERROR('#3: var /* y = 1; */ \\n y; y === undefined. Actual: ' + (y));
|
|
||||||
}
|
|
||||||
|
|
||||||
//CHECK#4
|
//CHECK#4
|
||||||
var /* y = 1;*/ y;
|
var /* y = 1;*/ y;
|
||||||
if (y !== undefined) {
|
assert.sameValue(y, undefined, 'The value of `y` is expected to equal `undefined`');
|
||||||
$ERROR('#4: var /* y = 1; */ y; y === undefined. Actual: ' + (y));
|
|
||||||
}
|
|
||||||
|
|
||||||
/*CHECK#5*/
|
/*CHECK#5*/
|
||||||
/*var x = 1;
|
/*var x = 1;
|
||||||
if (x === 1) {
|
if (x === 1) {
|
||||||
$ERROR('#5: Correct interpretation multi line comments');
|
Test262Error.thrower('#5: Correct interpretation multi line comments');
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*CHECK#6*/
|
/*CHECK#6*/
|
||||||
/*var this.y = 1;*/
|
/*var this.y = 1;*/
|
||||||
this.y++;
|
this.y++;
|
||||||
if (isNaN(y) !== true) {
|
assert.sameValue(isNaN(y), true, 'isNaN(y) returns true');
|
||||||
$ERROR('#6: /*var this.y = 1;*/ \\n this.y++; y === Not-a-Number. Actual: ' + (y));
|
|
||||||
}
|
|
||||||
|
|
||||||
//CHECK#7
|
//CHECK#7
|
||||||
var string = "/*var y = 0*/" /* y = 1;*/
|
var string = "/*var y = 0*/" /* y = 1;*/
|
||||||
if (string !== "/*var y = 0*/") {
|
assert.sameValue(string, "/*var y = 0*/", 'The value of `string` is "/*var y = 0*/"');
|
||||||
$ERROR('#7: var string = "/*var y = 0*/" /* y = 1;*/ string === "//var y = 0"');
|
|
||||||
}
|
|
||||||
|
|
||||||
//CHECK#8
|
//CHECK#8
|
||||||
var string = "/*var y = 0" /* y = 1;*/
|
var string = "/*var y = 0" /* y = 1;*/
|
||||||
if (string !== "/*var y = 0") {
|
assert.sameValue(string, "/*var y = 0", 'The value of `string` is "/*var y = 0"');
|
||||||
$ERROR('#8: var string = "/*var y = 0" /* y = 1;*/ string === "//var y = 0"');
|
|
||||||
}
|
|
||||||
|
|
||||||
/*CHECK#9*/
|
/*CHECK#9*/
|
||||||
/** $ERROR('#9: Correct interpretation multi line comments');
|
/** Test262Error.thrower('#9: Correct interpretation multi line comments');
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*CHECK#10*/
|
/*CHECK#10*/
|
||||||
/* $ERROR('#10: Correct interpretation multi line comments');
|
/* Test262Error.thrower('#10: Correct interpretation multi line comments');
|
||||||
**/
|
**/
|
||||||
|
|
||||||
/*CHECK#11*/
|
/*CHECK#11*/
|
||||||
/****** $ERROR('#11: Correct interpretation multi line comments');*********
|
/****** Test262Error.thrower('#11: Correct interpretation multi line comments');*********
|
||||||
***********
|
***********
|
||||||
*
|
*
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue