Skip to content
Snippets Groups Projects
Commit db516d2a authored by Mark Miller's avatar Mark Miller
Browse files

Regenerated w fixed paths and ietc optimizations turned off

parent c79fbddc
No related branches found
No related tags found
No related merge requests found
Showing
with 20 additions and 20 deletions
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
* Program functions are defined in source text by a FunctionDeclaration or created dynamically either * Program functions are defined in source text by a FunctionDeclaration or created dynamically either
* by using a FunctionExpression or by using the built-in Function object as a constructor * by using a FunctionExpression or by using the built-in Function object as a constructor
* *
* @path 10_Execution_Contexts/10.1_Definitions/S10.1.1_A1_T1.js * @path 10_Execution_Contexts/10.1_Types_of_Executable_Code/S10.1.1_A1_T1.js
* @description Defining function by a FunctionDeclaration * @description Defining function by a FunctionDeclaration
*/ */
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
* Program functions are defined in source text by a FunctionDeclaration or created dynamically either * Program functions are defined in source text by a FunctionDeclaration or created dynamically either
* by using a FunctionExpression or by using the built-in Function object as a constructor * by using a FunctionExpression or by using the built-in Function object as a constructor
* *
* @path 10_Execution_Contexts/10.1_Definitions/S10.1.1_A1_T2.js * @path 10_Execution_Contexts/10.1_Types_of_Executable_Code/S10.1.1_A1_T2.js
* @description Creating function dynamically by using a FunctionExpression * @description Creating function dynamically by using a FunctionExpression
*/ */
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
* Program functions are defined in source text by a FunctionDeclaration or created dynamically either * Program functions are defined in source text by a FunctionDeclaration or created dynamically either
* by using a FunctionExpression or by using the built-in Function object as a constructor * by using a FunctionExpression or by using the built-in Function object as a constructor
* *
* @path 10_Execution_Contexts/10.1_Definitions/S10.1.1_A1_T3.js * @path 10_Execution_Contexts/10.1_Types_of_Executable_Code/S10.1.1_A1_T3.js
* @description Creating function dynamically by using the built-in Function object as a constructor * @description Creating function dynamically by using the built-in Function object as a constructor
*/ */
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
* There are two types of Function objects. Internal functions * There are two types of Function objects. Internal functions
* are built-in objects of the language, such as parseInt and Math.exp * are built-in objects of the language, such as parseInt and Math.exp
* *
* @path 10_Execution_Contexts/10.1_Definitions/S10.1.1_A2_T1.js * @path 10_Execution_Contexts/10.1_Types_of_Executable_Code/S10.1.1_A2_T1.js
* @description Checking types of parseInt and Math.exp * @description Checking types of parseInt and Math.exp
*/ */
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
/** /**
* The activation object is initialised with a property with name arguments and attributes {DontDelete} * The activation object is initialised with a property with name arguments and attributes {DontDelete}
* *
* @path 10_Execution_Contexts/10.1_Definitions/S10.1.6_A1_T1.js * @path 10_Execution_Contexts/10.1_Types_of_Executable_Code/S10.1.6_A1_T1.js
* @description Checking if deleting function parameter is possible * @description Checking if deleting function parameter is possible
* @noStrict * @noStrict
*/ */
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
/** /**
* The activation object is initialised with a property with name arguments and attributes {DontDelete} * The activation object is initialised with a property with name arguments and attributes {DontDelete}
* *
* @path 10_Execution_Contexts/10.1_Definitions/S10.1.6_A1_T2.js * @path 10_Execution_Contexts/10.1_Types_of_Executable_Code/S10.1.6_A1_T2.js
* @description Checking funtion which returns property "arguments" * @description Checking funtion which returns property "arguments"
*/ */
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
/** /**
* The activation object is initialised with a property with name arguments and attributes {DontDelete} * The activation object is initialised with a property with name arguments and attributes {DontDelete}
* *
* @path 10_Execution_Contexts/10.1_Definitions/S10.1.6_A1_T3.js * @path 10_Execution_Contexts/10.1_Types_of_Executable_Code/S10.1.6_A1_T3.js
* @description Checking function which returns "this" * @description Checking function which returns "this"
* @noStrict * @noStrict
*/ */
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
/** /**
* The this value associated with an executioncontext is immutable * The this value associated with an executioncontext is immutable
* *
* @path 10_Execution_Contexts/10.1_Definitions/S10.1.7_A1_T1.js * @path 10_Execution_Contexts/10.1_Types_of_Executable_Code/S10.1.7_A1_T1.js
* @description Checking if deleting "this" fails * @description Checking if deleting "this" fails
*/ */
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
* If the caller supplies fewer parameter values than there are * If the caller supplies fewer parameter values than there are
* formal parameters, the extra formal parameters have value undefined * formal parameters, the extra formal parameters have value undefined
* *
* @path 10_Execution_Contexts/10.1_Definitions/10.1.3_Variable_Instantiation/S10.1.3_A1.js * @path 10_Execution_Contexts/10.2_Lexical_Environments/10.2.1_Environment_Records/S10.1.3_A1.js
* @description Calling function excluding a few parameters * @description Calling function excluding a few parameters
*/ */
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* the same property, the corresponding property is given the value that was * the same property, the corresponding property is given the value that was
* supplied for the last parameter with this name * supplied for the last parameter with this name
* *
* @path 10_Execution_Contexts/10.1_Definitions/10.1.3_Variable_Instantiation/S10.1.3_A2.js * @path 10_Execution_Contexts/10.2_Lexical_Environments/10.2.1_Environment_Records/S10.1.3_A2.js
* @description Creating functions initialized with two or more formal parameters, which have the same name * @description Creating functions initialized with two or more formal parameters, which have the same name
* @noStrict * @noStrict
*/ */
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* name as some previous parameters do) was not supplied by the * name as some previous parameters do) was not supplied by the
* caller, the value of the corresponding property is undefined * caller, the value of the corresponding property is undefined
* *
* @path 10_Execution_Contexts/10.1_Definitions/10.1.3_Variable_Instantiation/S10.1.3_A3.js * @path 10_Execution_Contexts/10.2_Lexical_Environments/10.2.1_Environment_Records/S10.1.3_A3.js
* @description Creating functions with two or more formal parameters, * @description Creating functions with two or more formal parameters,
* that have the same name. Calling this function excluding a few last parameters * that have the same name. Calling this function excluding a few last parameters
*/ */
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* value and attributes. Semantically, this step must follow the creation of * value and attributes. Semantically, this step must follow the creation of
* FormalParameterList properties * FormalParameterList properties
* *
* @path 10_Execution_Contexts/10.1_Definitions/10.1.3_Variable_Instantiation/S10.1.3_A4_T1.js * @path 10_Execution_Contexts/10.2_Lexical_Environments/10.2.1_Environment_Records/S10.1.3_A4_T1.js
* @description Checking existence of a function with passed parameter * @description Checking existence of a function with passed parameter
* @noStrict * @noStrict
*/ */
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* value and attributes. Semantically, this step must follow the creation of * value and attributes. Semantically, this step must follow the creation of
* FormalParameterList properties * FormalParameterList properties
* *
* @path 10_Execution_Contexts/10.1_Definitions/10.1.3_Variable_Instantiation/S10.1.3_A4_T2.js * @path 10_Execution_Contexts/10.2_Lexical_Environments/10.2.1_Environment_Records/S10.1.3_A4_T2.js
* @description Checking existence of a function with declared variable * @description Checking existence of a function with declared variable
*/ */
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* in the VariableDeclaration or VariableDeclarationNoIn, whose value is * in the VariableDeclaration or VariableDeclarationNoIn, whose value is
* undefined and whose attributes are determined by the type of code * undefined and whose attributes are determined by the type of code
* *
* @path 10_Execution_Contexts/10.1_Definitions/10.1.3_Variable_Instantiation/S10.1.3_A5.1_T1.js * @path 10_Execution_Contexts/10.2_Lexical_Environments/10.2.1_Environment_Records/S10.1.3_A5.1_T1.js
* @description Checking variable existence only * @description Checking variable existence only
*/ */
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* in the VariableDeclaration or VariableDeclarationNoIn, whose value is * in the VariableDeclaration or VariableDeclarationNoIn, whose value is
* undefined and whose attributes are determined by the type of code * undefined and whose attributes are determined by the type of code
* *
* @path 10_Execution_Contexts/10.1_Definitions/10.1.3_Variable_Instantiation/S10.1.3_A5.1_T2.js * @path 10_Execution_Contexts/10.2_Lexical_Environments/10.2.1_Environment_Records/S10.1.3_A5.1_T2.js
* @description Checking existence of the variable object property with formal parameter * @description Checking existence of the variable object property with formal parameter
*/ */
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* name of a declared variable, the value of the property and its attributes * name of a declared variable, the value of the property and its attributes
* are not changed * are not changed
* *
* @path 10_Execution_Contexts/10.1_Definitions/10.1.3_Variable_Instantiation/S10.1.3_A5.2_T1.js * @path 10_Execution_Contexts/10.2_Lexical_Environments/10.2.1_Environment_Records/S10.1.3_A5.2_T1.js
* @description Checking existence of the variable object property with formal parameter * @description Checking existence of the variable object property with formal parameter
*/ */
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* A scope chain is a list of objects that are searched when evaluating an * A scope chain is a list of objects that are searched when evaluating an
* Identifier * Identifier
* *
* @path 10_Execution_Contexts/10.1_Definitions/10.1.4_Scope_Chain_and_Identifier_Resolution/S10.1.4_A1_T1.js * @path 10_Execution_Contexts/10.2_Lexical_Environments/10.2.2__Lexical_Environment_Operations/S10.1.4_A1_T1.js
* @description Checking scope chain containing function declarations * @description Checking scope chain containing function declarations
*/ */
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* A scope chain is a list of objects that are searched when evaluating an * A scope chain is a list of objects that are searched when evaluating an
* Identifier * Identifier
* *
* @path 10_Execution_Contexts/10.1_Definitions/10.1.4_Scope_Chain_and_Identifier_Resolution/S10.1.4_A1_T2.js * @path 10_Execution_Contexts/10.2_Lexical_Environments/10.2.2__Lexical_Environment_Operations/S10.1.4_A1_T2.js
* @description Checking scope chain containing function declarations * @description Checking scope chain containing function declarations
*/ */
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* A scope chain is a list of objects that are searched when evaluating an * A scope chain is a list of objects that are searched when evaluating an
* Identifier * Identifier
* *
* @path 10_Execution_Contexts/10.1_Definitions/10.1.4_Scope_Chain_and_Identifier_Resolution/S10.1.4_A1_T3.js * @path 10_Execution_Contexts/10.2_Lexical_Environments/10.2.2__Lexical_Environment_Operations/S10.1.4_A1_T3.js
* @description Checking scope chain containing function declarations * @description Checking scope chain containing function declarations
*/ */
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* A scope chain is a list of objects that are searched when evaluating an * A scope chain is a list of objects that are searched when evaluating an
* Identifier * Identifier
* *
* @path 10_Execution_Contexts/10.1_Definitions/10.1.4_Scope_Chain_and_Identifier_Resolution/S10.1.4_A1_T4.js * @path 10_Execution_Contexts/10.2_Lexical_Environments/10.2.2__Lexical_Environment_Operations/S10.1.4_A1_T4.js
* @description Checking scope chain containing function declarations * @description Checking scope chain containing function declarations
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment