|
1 // Copyright 2009 the Sputnik authors. All rights reserved. |
|
2 // This code is governed by the BSD license found in the LICENSE file. |
|
3 |
|
4 /** |
|
5 * The production ExpressionStatement : [lookahead \notin {{, function}] Expression; is evaluated as follows: |
|
6 * 1. Evaluate Expression. |
|
7 * 2. Call GetValue(Result(1)). |
|
8 * 3. Return (normal, Result(2), empty) |
|
9 * |
|
10 * @path ch12/12.4/S12.4_A2_T1.js |
|
11 * @description Checking by using eval "(eval("x+1+x==1"))" |
|
12 */ |
|
13 |
|
14 x=1; |
|
15 |
|
16 __evaluated = eval("x+1+x==1"); |
|
17 |
|
18 ////////////////////////////////////////////////////////////////////////////// |
|
19 //CHECK#1 |
|
20 if (__evaluated !== false) { |
|
21 $ERROR('#1: __evaluated === false. Actual: __evaluated ==='+ __evaluated ); |
|
22 } |
|
23 // |
|
24 ////////////////////////////////////////////////////////////////////////////// |
|
25 |
|
26 __evaluated = eval("1+1+1==1"); |
|
27 |
|
28 ////////////////////////////////////////////////////////////////////////////// |
|
29 //CHECK#2 |
|
30 if (__evaluated !== false) { |
|
31 $ERROR('#2: __evaluated === false. Actual: __evaluated ==='+ __evaluated ); |
|
32 } |
|
33 // |
|
34 ////////////////////////////////////////////////////////////////////////////// |
|
35 |