11.1.1-1.js |
---
es5id: 11.1.1-1gs
description: the 'this' object at the global scope is not undefined
--- |
295 |
browser.js |
|
0 |
S11.1.1_A1.js |
---
info: The "this" is reserved word
es5id: 11.1.1_A1
description: Checking if execution of "this=1" fails
negative:
phase: parse
type: SyntaxError
--- |
355 |
S11.1.1_A3.1.js |
---
info: |
Being in function code, "this" and eval("this"), called as a functions,
return the global object
es5id: 11.1.1_A3.1
description: Creating function which returns "this" or eval("this")
flags: [noStrict]
--- |
813 |
S11.1.1_A3.2.js |
---
info: |
Being in function code, "this" and eval("this"), called as a
constructors, return the object
es5id: 11.1.1_A3.2
description: Create function. It have property, that returned "this"
--- |
966 |
S11.1.1_A4.1.js |
---
info: |
Being in anonymous code, "this" and eval("this"), called as a function,
return the global object
es5id: 11.1.1_A4.1
description: Creating function with new Function() constructor
--- |
810 |
S11.1.1_A4.2.js |
---
info: |
Being in anonymous code, "this" and eval("this"), called as a
constructor, return the object
es5id: 11.1.1_A4.2
description: >
Creating function by using new Function() constructor. It has the
property, which returns "this"
--- |
1135 |
shell.js |
|
0 |