2011-09-07 08:35:18 +02:00
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
|
|
|
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)
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 12.4_A2_T2
|
2014-07-22 01:09:02 +02:00
|
|
|
description: Checking by using eval(eval(x), where x is any string)
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
2015-03-23 17:34:52 +01:00
|
|
|
var x, __evaluated;
|
2014-08-05 17:38:52 +02:00
|
|
|
|
2011-09-07 08:35:18 +02:00
|
|
|
x="5+1|0===0";
|
|
|
|
|
|
|
|
__evaluated = eval(x);
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//CHECK#1
|
|
|
|
if (__evaluated !== 7) {
|
|
|
|
$ERROR('#1: __evaluated === 7. Actual: __evaluated ==='+ __evaluated );
|
|
|
|
}
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
__evaluated = eval("2*"+x+">-1");
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//CHECK#2
|
|
|
|
if (__evaluated !== 11) {
|
|
|
|
$ERROR('#2: __evaluated === 11. Actual: __evaluated ==='+ __evaluated );
|
|
|
|
}
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|