browser.js |
|
0 |
S12.4_A1.js |
---
info: |
An ExpressionStatement can not start with the function keyword because
that might make it ambiguous with a FunctionDeclaration
es5id: 12.4_A1
description: Checking if execution of "function(){}()" fails
negative:
phase: parse
type: SyntaxError
--- |
647 |
S12.4_A2_T1.js |
---
info: |
The production ExpressionStatement : [lookahead \notin {{, function}] Expression; is evaluated as follows:
1. Evaluate Expression.
2. Call GetValue(Result(1)).
3. Return (normal, Result(2), empty)
es5id: 12.4_A2_T1
description: Checking by using eval "(eval("x+1+x==1"))"
--- |
1152 |
S12.4_A2_T2.js |
---
info: |
The production ExpressionStatement : [lookahead \notin {{, function}] Expression; is evaluated as follows:
1. Evaluate Expression.
2. Call GetValue(Result(1)).
3. Return (normal, Result(2), empty)
es5id: 12.4_A2_T2
description: Checking by using eval(eval(x), where x is any string)
--- |
1152 |
shell.js |
|
0 |