js/src/tests/test262/ch12/12.4/S12.4_A2_T2.js

branch
TOR_BUG_3246
changeset 5
4ab42b5ab56c
equal deleted inserted replaced
-1:000000000000 0:72416bbaac2b
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_T2.js
11 * @description Checking by using eval(eval(x), where x is any string)
12 */
13
14 x="5+1|0===0";
15
16 __evaluated = eval(x);
17
18 //////////////////////////////////////////////////////////////////////////////
19 //CHECK#1
20 if (__evaluated !== 7) {
21 $ERROR('#1: __evaluated === 7. Actual: __evaluated ==='+ __evaluated );
22 }
23 //
24 //////////////////////////////////////////////////////////////////////////////
25
26 __evaluated = eval("2*"+x+">-1");
27
28 //////////////////////////////////////////////////////////////////////////////
29 //CHECK#2
30 if (__evaluated !== 11) {
31 $ERROR('#2: __evaluated === 11. Actual: __evaluated ==='+ __evaluated );
32 }
33 //
34 //////////////////////////////////////////////////////////////////////////////
35

mercurial