Regenerated

This commit is contained in:
Mark Miller 2011-09-24 11:13:49 -07:00
parent 66abdf4354
commit 479a396ffd
631 changed files with 631 additions and 631 deletions

View File

@ -6,7 +6,7 @@
*
* @path 07_Lexical_Conventions/7.5_Tokens/7.5.3_Future_Reserved_Words/S7.5.3_A1.15.js
* @description Checking if execution of "implements=1" fails in strict code
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +7,7 @@
* @path 07_Lexical_Conventions/7.5_Tokens/7.5.3_Future_Reserved_Words/S7.5.3_A1.18.js
* @description Checking if execution of "interface = 1" fails in
* strict code
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -6,7 +6,7 @@
*
* @path 07_Lexical_Conventions/7.5_Tokens/7.5.3_Future_Reserved_Words/S7.5.3_A1.21.js
* @description Checking if execution of "package=1" fails in strict code
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -6,7 +6,7 @@
*
* @path 07_Lexical_Conventions/7.5_Tokens/7.5.3_Future_Reserved_Words/S7.5.3_A1.22.js
* @description Checking if execution of "private=1" fails in strict code
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +7,7 @@
* @path 07_Lexical_Conventions/7.5_Tokens/7.5.3_Future_Reserved_Words/S7.5.3_A1.23.js
* @description Checking if execution of "protected=1" fails in
* strict code
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -6,7 +6,7 @@
*
* @path 07_Lexical_Conventions/7.5_Tokens/7.5.3_Future_Reserved_Words/S7.5.3_A1.24.js
* @description Checking if execution of "public=1" fails in strict code
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -6,7 +6,7 @@
*
* @path 07_Lexical_Conventions/7.5_Tokens/7.5.3_Future_Reserved_Words/S7.5.3_A1.26.js
* @description Checking if execution of "static=1" fails in strict code
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -6,7 +6,7 @@
*
* @path 08_Types/8.5_The_Number_Type/S8.5_A9.js
* @description Try alter globally defined variable NaN
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -6,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -6,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -6,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -6,7 +6,7 @@
*
* @path 08_Types/8.7_The_Reference_Type/S8.7_A5_T1.js
* @description Delete referenced object, var __ref = obj
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -6,7 +6,7 @@
*
* @path 08_Types/8.7_The_Reference_Type/S8.7_A5_T2.js
* @description Delete referenced object, __ref = obj
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -5,7 +5,7 @@
* @path 10_Execution_Contexts/10.4_Establishing_An_Execution_Context/10.4.2_Eval_Code/S10.4.2.1_A1.js
* @description Strict indirect eval should not leak top level
* declarations into the global scope
* @strictOnly
* @onlyStrict
*/
if (!('foo' in this)) {

View File

@ -5,7 +5,7 @@
* @path 10_Execution_Contexts/10.4_Establishing_An_Execution_Context/10.4.3_Entering_Function_Code/S10.4.3_A1.js
* @description When calling a strict anonymous function as a
* function, "this" should be bound to undefined.
* @strictOnly
* @onlyStrict
*/
var that = (function() { return this; })();

View File

@ -9,7 +9,7 @@
* @path 11_Expressions/11.4_Unary_Operators/11.4.1_The_delete_Operator/S11.4.1_A5.js
* @description See if a strict delete returns false when deleting a
* non-standard property.
* @strictOnly
* @onlyStrict
*/
var deleted = 'unassigned';

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -8,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -8,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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"
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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"
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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"
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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"
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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"
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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"
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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"
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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"
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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"
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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"
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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"
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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"
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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"
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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"
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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"
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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"
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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"
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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"
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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"
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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"
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -6,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +7,7 @@
*
* @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
* @strictOnly
* @onlyStrict
* @negative
*/

View File

@ -7,7 +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
* @strictOnly
* @onlyStrict
* @negative
*/

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