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

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 // Copyright 2009 the Sputnik authors.  All rights reserved.
     2 // This code is governed by the BSD license found in the LICENSE file.
     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  */
    14 x="5+1|0===0";
    16 __evaluated = eval(x);
    18 //////////////////////////////////////////////////////////////////////////////
    19 //CHECK#1
    20 if (__evaluated !== 7) {
    21 	$ERROR('#1: __evaluated === 7. Actual:  __evaluated ==='+ __evaluated  );
    22 }
    23 //
    24 //////////////////////////////////////////////////////////////////////////////
    26 __evaluated = eval("2*"+x+">-1");
    28 //////////////////////////////////////////////////////////////////////////////
    29 //CHECK#2
    30 if (__evaluated !== 11) {
    31 	$ERROR('#2: __evaluated === 11. Actual:  __evaluated ==='+ __evaluated  );
    32 }
    33 //
    34 //////////////////////////////////////////////////////////////////////////////

mercurial