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
|
||||
// $ERROR('#1: Correct interpretation single line comments');
|
||||
// Test262Error.thrower('#1: Correct interpretation single line comments');
|
||||
|
||||
//CHECK#2
|
||||
var x = 0;
|
||||
// x = 1;
|
||||
if (x !== 0) {
|
||||
$ERROR('#2: var x = 0; // x = 1; x === 0. Actual: ' + (x));
|
||||
}
|
||||
assert.sameValue(x, 0, 'The value of `x` is 0');
|
||||
|
||||
//CHECK#3
|
||||
var // y = 1;
|
||||
y;
|
||||
if (y !== undefined) {
|
||||
$ERROR('#3: var // y = 1; \\n y; y === undefined. Actual: ' + (y));
|
||||
}
|
||||
assert.sameValue(y, undefined, 'The value of `y` is expected to equal `undefined`');
|
||||
|
||||
//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
|
||||
//var x = 1;
|
||||
//if (x === 1) {
|
||||
// $ERROR('#5: Correct interpretation single line comments');
|
||||
// Test262Error.thrower('#5: Correct interpretation single line comments');
|
||||
//}
|
||||
|
||||
//CHECK#6
|
||||
//var this.y = 1;
|
||||
this.y++;
|
||||
if (isNaN(y) !== true) {
|
||||
$ERROR('#6: //var this.y = 1; \\n this.y++; y === Not-a-Number. Actual: ' + (y));
|
||||
}
|
||||
assert.sameValue(isNaN(y), true, 'isNaN(y) returns true');
|
||||
|
|
|
@ -8,65 +8,53 @@ description: Create comments with any code
|
|||
---*/
|
||||
|
||||
/*CHECK#1*/
|
||||
/* $ERROR('#1: Correct interpretation multi line comments');
|
||||
/* Test262Error.thrower('#1: Correct interpretation multi line comments');
|
||||
*/
|
||||
|
||||
/*CHECK#2*/
|
||||
var x = 0;
|
||||
/* x = 1;*/
|
||||
if (x !== 0) {
|
||||
$ERROR('#2: var x = 0; /* x = 1;*/ x === 0. Actual: ' + (x));
|
||||
}
|
||||
assert.sameValue(x, 0, 'The value of `x` is 0');
|
||||
|
||||
//CHECK#3
|
||||
var /* y = 1;*/
|
||||
y;
|
||||
if (y !== undefined) {
|
||||
$ERROR('#3: var /* y = 1; */ \\n y; y === undefined. Actual: ' + (y));
|
||||
}
|
||||
assert.sameValue(y, undefined, 'The value of `y` is expected to equal `undefined`');
|
||||
|
||||
//CHECK#4
|
||||
var /* y = 1;*/ y;
|
||||
if (y !== undefined) {
|
||||
$ERROR('#4: var /* y = 1; */ y; y === undefined. Actual: ' + (y));
|
||||
}
|
||||
assert.sameValue(y, undefined, 'The value of `y` is expected to equal `undefined`');
|
||||
|
||||
/*CHECK#5*/
|
||||
/*var x = 1;
|
||||
if (x === 1) {
|
||||
$ERROR('#5: Correct interpretation multi line comments');
|
||||
Test262Error.thrower('#5: Correct interpretation multi line comments');
|
||||
}
|
||||
*/
|
||||
|
||||
/*CHECK#6*/
|
||||
/*var this.y = 1;*/
|
||||
this.y++;
|
||||
if (isNaN(y) !== true) {
|
||||
$ERROR('#6: /*var this.y = 1;*/ \\n this.y++; y === Not-a-Number. Actual: ' + (y));
|
||||
}
|
||||
assert.sameValue(isNaN(y), true, 'isNaN(y) returns true');
|
||||
|
||||
//CHECK#7
|
||||
var string = "/*var y = 0*/" /* y = 1;*/
|
||||
if (string !== "/*var y = 0*/") {
|
||||
$ERROR('#7: var string = "/*var y = 0*/" /* y = 1;*/ string === "//var y = 0"');
|
||||
}
|
||||
assert.sameValue(string, "/*var y = 0*/", 'The value of `string` is "/*var y = 0*/"');
|
||||
|
||||
//CHECK#8
|
||||
var string = "/*var y = 0" /* y = 1;*/
|
||||
if (string !== "/*var y = 0") {
|
||||
$ERROR('#8: var string = "/*var y = 0" /* y = 1;*/ string === "//var y = 0"');
|
||||
}
|
||||
assert.sameValue(string, "/*var y = 0", 'The value of `string` is "/*var y = 0"');
|
||||
|
||||
/*CHECK#9*/
|
||||
/** $ERROR('#9: Correct interpretation multi line comments');
|
||||
/** Test262Error.thrower('#9: Correct interpretation multi line comments');
|
||||
*/
|
||||
|
||||
/*CHECK#10*/
|
||||
/* $ERROR('#10: Correct interpretation multi line comments');
|
||||
/* Test262Error.thrower('#10: Correct interpretation multi line comments');
|
||||
**/
|
||||
|
||||
/*CHECK#11*/
|
||||
/****** $ERROR('#11: Correct interpretation multi line comments');*********
|
||||
/****** Test262Error.thrower('#11: Correct interpretation multi line comments');*********
|
||||
***********
|
||||
*
|
||||
|
||||
|
|
Loading…
Reference in New Issue