mirror of https://github.com/tc39/test262.git
Regenerated
This commit is contained in:
parent
20d575423d
commit
a277262e89
Binary file not shown.
Binary file not shown.
|
@ -6,8 +6,7 @@
|
|||
*
|
||||
* @path 08_Types/8.5_The_Number_Type/S8.5_A9.js
|
||||
* @description Try alter globally defined variable NaN
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
Number.NaN = 1;
|
||||
|
|
|
@ -6,8 +6,7 @@
|
|||
*
|
||||
* @path 08_Types/8.6_The_Object_Type/8.6.1_Property_Attributes/S8.6.1_A1.js
|
||||
* @description Try change Math.E property
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
var __e = Math.E;
|
||||
|
|
|
@ -6,8 +6,7 @@
|
|||
*
|
||||
* @path 08_Types/8.6_The_Object_Type/8.6.1_Property_Attributes/S8.6.1_A3.js
|
||||
* @description Try to delete Number.NaN
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -6,8 +6,7 @@
|
|||
*
|
||||
* @path 08_Types/8.6_The_Object_Type/8.6.2_Internal_Properties_and_Methods/S8.6.2.3_A1.js
|
||||
* @description Try put other value for Math.E property
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
var __e = Math.E;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 08_Types/8.6_The_Object_Type/8.6.2_Internal_Properties_and_Methods/S8.6.2.5_A1.js
|
||||
* @description Try to delete Math.E, that has the DontDelete attribute
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -6,8 +6,7 @@
|
|||
*
|
||||
* @path 08_Types/8.7_The_Reference_Type/S8.7_A5_T1.js
|
||||
* @description Delete referenced object, var __ref = obj
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -6,8 +6,7 @@
|
|||
*
|
||||
* @path 08_Types/8.7_The_Reference_Type/S8.7_A5_T2.js
|
||||
* @description Delete referenced object, __ref = obj
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Binary file not shown.
BIN
test/suite/converted/10_Execution_Contexts/10.2_Lexical_Environments/.DS_Store
vendored
Normal file
BIN
test/suite/converted/10_Execution_Contexts/10.2_Lexical_Environments/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
test/suite/converted/10_Execution_Contexts/10.4_Establishing_An_Execution_Context/.DS_Store
vendored
Normal file
BIN
test/suite/converted/10_Execution_Contexts/10.4_Establishing_An_Execution_Context/.DS_Store
vendored
Normal file
Binary file not shown.
|
@ -8,6 +8,7 @@
|
|||
* @onlyStrict
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
if (!('foo' in this)) {
|
||||
(1,eval)('"use strict"; var foo = 88;');
|
||||
if ('foo' in this) {
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
* @onlyStrict
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
var that = (function() { return this; })();
|
||||
if (that !== undefined) {
|
||||
$ERROR('#1: "this" leaked as: ' + that);
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
* @onlyStrict
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
var deleted = 'unassigned';
|
||||
try {
|
||||
deleted = delete RegExp.leftContext;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.10_T1.js
|
||||
* @description Using interation statement within "with" statement leading to normal completion
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.10_T2.js
|
||||
* @description Using iteration statement within "with" statement leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -8,8 +8,7 @@
|
|||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.10_T3.js
|
||||
* @description Using iteration statment withing "with" statement leading to completion by exception
|
||||
* iteration statement inside with statement - exception completion
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -8,8 +8,7 @@
|
|||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.10_T4.js
|
||||
* @description Using iteration statement witthin "with" staement leading to completion by break
|
||||
* iteration statement inside with statement - break completion
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.10_T5.js
|
||||
* @description Using iteration statement within "with" statement leading to completion by break
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.11_T1.js
|
||||
* @description Calling a function within "with" statement declared without the statement, leading to normal completion
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.11_T2.js
|
||||
* @description Calling a function within "with" statement declared without the statement, leading to normal completion by "return"
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.11_T3.js
|
||||
* @description Calling a function within "with" statement declared without the statement, leading to normal completion by "return"
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.11_T4.js
|
||||
* @description Calling a function within "with" statement declared without the statement, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.11_T5.js
|
||||
* @description Calling a function within "with" statement declared without the statement, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.12_T1.js
|
||||
* @description Calling a function without "with" statement declared within the statement, leading to normal completion
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.12_T2.js
|
||||
* @description Calling a function without "with" statement declared within the statement, leading to normal completion by "return"
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.12_T3.js
|
||||
* @description Calling a function without "with" statement declared within the statement, leading to normal completion by "return"
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.12_T4.js
|
||||
* @description Calling a function without "with" statement declared within the statement, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.12_T5.js
|
||||
* @description Calling a function without "with" statement declared within the statement, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.1_T1.js
|
||||
* @description Using "with" inside of global context leading to normal completion
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.1_T2.js
|
||||
* @description Using "with" inside of global context leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.1_T3.js
|
||||
* @description Using "with" inside of global context leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.2_T1.js
|
||||
* @description Calling a function without "with" statement when the statement itself is declared within the function declaration, leading to normal completion
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.2_T2.js
|
||||
* @description Calling a function without "with" statement when the statement itself is declared within the function declaration, leading to normal completion by "return"
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.2_T3.js
|
||||
* @description Calling a function without "with" statement when the statement itself is declared within the function declaration, leading to normal completion by "return"
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.2_T4.js
|
||||
* @description Calling a function without "with" statement when the statement itself is declared within the function declaration, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.2_T5.js
|
||||
* @description Calling a function without "with" statement when the statement itself is declared within the function declaration, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.3_T1.js
|
||||
* @description Using "with" statement within function constructor, leading to normal completition
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.3_T2.js
|
||||
* @description Using "with" statement within function constructor, leading to normal completition by "return"
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.3_T3.js
|
||||
* @description Using "with" statement within function constructor, leading to normal completition by "return"
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.3_T4.js
|
||||
* @description Using "with" statement within function constructor, leading to completition by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.3_T5.js
|
||||
* @description Using "with" statement within function constructor, leading to completition by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.4_T1.js
|
||||
* @description Using "with" statement within iteration statement, leading to normal completion
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.4_T2.js
|
||||
* @description Using "with" statement within iteration statement, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.4_T3.js
|
||||
* @description Using "with" statement within iteration statement, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.4_T4.js
|
||||
* @description Using "with" statement within iteration statement, leading to completion by break
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.4_T5.js
|
||||
* @description Using "with" statement within iteration statement, leading to completion by break
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.5_T1.js
|
||||
* @description Using "with" statement within "for-in" statement, leading to normal completion
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.5_T2.js
|
||||
* @description Using "with" statement within "for-in" statement, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.5_T3.js
|
||||
* @description Using "with" statement within "for-in" statement, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.5_T4.js
|
||||
* @description Using "with" statement within "for-in" statement, leading to completion by break
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.5_T5.js
|
||||
* @description Using "with" statement within "for-in" statement, leading to completion by break
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.6_T1.js
|
||||
* @description Using "with" statement within another "with" statement, leading to normal completion
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.6_T2.js
|
||||
* @description Using "with" statement within another "with" statement, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.6_T3.js
|
||||
* @description Using "with" statement within another "with" statement, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.7_T1.js
|
||||
* @description Calling a function within "with" statement declared within the statement, leading to normal completion
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.7_T2.js
|
||||
* @description Calling a function within "with" statement declared within the statement, leading to normal completion by "return"
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.7_T3.js
|
||||
* @description Calling a function within "with" statement declared within the statement, leading to normal completion by "return"
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.7_T4.js
|
||||
* @description Calling a function within "with" statement declared within the statement, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.7_T5.js
|
||||
* @description Calling a function within "with" statement declared within the statement, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.8_T1.js
|
||||
* @description Declaring function constructor within "with" statement, leading to normal completion
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.8_T2.js
|
||||
* @description Declaring function constructor within "with" statement, leading to normal completion by "return"
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.8_T3.js
|
||||
* @description Declaring function constructor within "with" statement, leading to normal completion by "return"
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.8_T4.js
|
||||
* @description Declaring function constructor within "with" statement, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.8_T5.js
|
||||
* @description Declaring function constructor within "with" statement, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.9_T1.js
|
||||
* @description Using "for-in" statement within "with" statement, leading to normal completion
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.9_T2.js
|
||||
* @description Using "for-in" statement within "with" statement, leading to completion by break
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A1.9_T3.js
|
||||
* @description Using "for-in" statement within "with" statement, leading to completion by break
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.10_T1.js
|
||||
* @description Using iteration statement within "with" statement, leading to normal completion
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.10_T2.js
|
||||
* @description Using iteration statement within "with" statement, leading completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.10_T3.js
|
||||
* @description Using iteration statement within "with" statement, leading completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.10_T4.js
|
||||
* @description Using iteration statement within "with" statement, leading completion be break
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.10_T5.js
|
||||
* @description Using iteration statement within "with" statement, leading completion be break
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.11_T1.js
|
||||
* @description Calling a function within "with" statement declared without the statement, leading to normal completion
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.11_T2.js
|
||||
* @description Calling a function within "with" statement declared without the statement, leading to normal completion by "return"
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.11_T3.js
|
||||
* @description Calling a function within "with" statement declared without the statement, leading to normal completion by "return"
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.11_T4.js
|
||||
* @description Calling a function within "with" statement declared without the statement, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.11_T5.js
|
||||
* @description Calling a function within "with" statement declared without the statement, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.12_T1.js
|
||||
* @description Calling a function without "with" statement declared within the statement, leading to normal completion
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.12_T2.js
|
||||
* @description Calling a function without "with" statement declared within the statement, leading to normal completion by "return"
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.12_T3.js
|
||||
* @description Calling a function without "with" statement declared within the statement, leading to normal completion by "return"
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.12_T4.js
|
||||
* @description Calling a function without "with" statement declared within the statement, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.12_T5.js
|
||||
* @description Calling a function without "with" statement declared within the statement, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.1_T1.js
|
||||
* @description Using "with" statement within global context - normal completion
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.1_T2.js
|
||||
* @description Using "with" statement within global context, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.1_T3.js
|
||||
* @description Using "with" statement within global context, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.2_T1.js
|
||||
* @description Declaring "with" statement within a function body, leading to normal completion
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.2_T2.js
|
||||
* @description Declaring "with" statement within a function body, leading to normal completion by "return"
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.2_T3.js
|
||||
* @description Declaring "with" statement within a function body, leading to normal completion by "return"
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.2_T4.js
|
||||
* @description Declaring "with" statement within a function body, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.2_T5.js
|
||||
* @description Declaring "with" statement within a function body, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.3_T1.js
|
||||
* @description Declaring "with" statement within a function constructor, leading to normal completion
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.3_T2.js
|
||||
* @description Declaring "with" statement within a function constructor, leading to normal completion by "return"
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.3_T3.js
|
||||
* @description Declaring "with" statement within a function constructor, leading to normal completion by "return"
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -6,8 +6,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.3_T4.js
|
||||
* @description Declaring "with" statement within a function constructor, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -1,60 +0,0 @@
|
|||
// Copyright 2009 the Sputnik authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/**
|
||||
* No matter how control leaves the embedded 'Statement',
|
||||
* the scope chain is always restored to its former state
|
||||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.3_T5.js
|
||||
* @description Declaring "with" statement within a function constructor, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
||||
var result = "result";
|
||||
|
||||
var myObj = {
|
||||
p1: 'a',
|
||||
value: 'myObj_value',
|
||||
valueOf : function(){return 'obj_valueOf';}
|
||||
}
|
||||
|
||||
try {
|
||||
function __FACTORY(){
|
||||
with(myObj){
|
||||
throw value;
|
||||
p1 = 'x1';
|
||||
}
|
||||
}
|
||||
var obj = new __FACTORY();
|
||||
} catch(e){
|
||||
result = p1;
|
||||
}
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
//CHECK#1
|
||||
if(result !== 1){
|
||||
$ERROR('#1: result === 1. Actual: result ==='+ result );
|
||||
}
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
//CHECK#2
|
||||
if(p1 !== 1){
|
||||
$ERROR('#2: p1 === 1. Actual: p1 ==='+ p1 );
|
||||
}
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
//CHECK#3
|
||||
if(myObj.p1 !== "a"){
|
||||
$ERROR('#3: myObj.p1 === "a". Actual: myObj.p1 ==='+ myObj.p1 );
|
||||
}
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.4_T1.js
|
||||
* @description Using "with" statement within iteration statement, leading to normal completion
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.4_T2.js
|
||||
* @description Using "with" statement within iteration statement, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
*
|
||||
* @path 12_Statement/12.10_The_with_Statement/S12.10_A3.4_T3.js
|
||||
* @description Using "with" statement within iteration statement, leading to completion by exception
|
||||
* @onlyStrict
|
||||
* @negative
|
||||
* @noStrict
|
||||
*/
|
||||
|
||||
this.p1 = 1;
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue