eval.js 4.96 KB
Newer Older
1
// Copyright 2011 the V8 project authors. All rights reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
//     * Redistributions of source code must retain the above copyright
//       notice, this list of conditions and the following disclaimer.
//     * Redistributions in binary form must reproduce the above
//       copyright notice, this list of conditions and the following
//       disclaimer in the documentation and/or other materials provided
//       with the distribution.
//     * Neither the name of Google Inc. nor the names of its
//       contributors may be used to endorse or promote products derived
//       from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

assertEquals(void 0, eval());
assertEquals(4, eval(4));

function f() { return 'The f function'; };
assertTrue(f === eval(f));

function g(x, y) { return 4; };

count = 0;
assertEquals(4, eval('2 + 2', count++));
assertEquals(1, count);

try {
  eval('hest 7 &*^*&^');
42
  assertUnreachable('Did not throw on syntax error.');
43 44 45 46 47 48 49 50 51 52
} catch (e) {
  assertEquals('SyntaxError', e.name);
}


// eval has special evaluation order for consistency with other browsers.
global_eval = eval;
assertEquals(void 0, eval(eval("var eval = function f(x) { return 'hest';}")))
eval = global_eval;

53
// Test eval with different number of parameters.
54 55 56 57 58 59 60
global_eval = eval;
eval = function(x, y) { return x + y; };
assertEquals(4, eval(2, 2));
eval = global_eval;

// Test that un-aliased eval reads from local context.
foo = 0;
61
result =
62 63 64 65 66 67
  (function() {
    var foo = 2;
    return eval('foo');
  })();
assertEquals(2, result);

68
// Test that un-aliased eval writes to local context.
69
foo = 0;
70
result =
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
  (function() {
    var foo = 1;
    eval('foo = 2');
    return foo;
  })();
assertEquals(2, result);
assertEquals(0, foo);

// Test that un-aliased eval has right receiver.
function MyObject() { this.self = eval('this'); }
var o = new MyObject();
assertTrue(o === o.self);

// Test that aliased eval reads from global context.
var e = eval;
foo = 0;
87
result =
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
  (function() {
    var foo = 2;
    return e('foo');
  })();
assertEquals(0, result);

// Test that aliased eval writes to global context.
var e = eval;
foo = 0;
(function() { e('var foo = 2;'); })();
assertEquals(2, foo);

// Test that aliased eval has right receiver.
function MyOtherObject() { this.self = e('this'); }
var o = new MyOtherObject();
assertTrue(this === o.self);

// Try to cheat the 'aliased eval' detection.
var x = this;
foo = 0;
108
result =
109 110
  (function() {
    var foo = 2;
111
    // Should be non-direct call.
112 113 114 115
    return x.eval('foo');
  })();
assertEquals(0, result);

116 117 118 119 120 121 122 123 124
foo = 0;
result =
  (function() {
    var foo = 2;
    // Should be non-direct call.
    return (1,eval)('foo');
  })();
assertEquals(0, result);

125
foo = 0;
126
result =
127 128 129
  (function() {
    var eval = function(x) { return x; };
    var foo = eval(2);
130
    // Should be non-direct call.
131 132 133 134
    return e('foo');
  })();
assertEquals(0, result);

135 136 137 138 139 140 141 142 143 144 145
foo = 0;
result =
  (function() {
    var foo = 2;
    // Should be direct call.
    with ({ eval : e }) {
      return eval('foo');
    }
  })();
assertEquals(2, result);

146 147 148 149 150 151 152
result =
  (function() {
    var eval = function(x) { return 2 * x; };
    return (function() { return eval(2); })();
  })();
assertEquals(4, result);

153 154 155 156 157 158 159
result =
  (function() {
    eval("var eval = function(s) { return this; }");
    return eval("42");  // Should return the global object
  })();
assertEquals(this, result);

160 161 162 163 164
(function() {
  var obj = { f: function(eval) { return eval("this"); } };
  result = obj.f(eval);
  assertEquals(obj, result);
})();
165

166 167 168 169 170
(function() {
  var obj = { f: function(eval) { arguments; return eval("this"); } };
  result = obj.f(eval);
  assertEquals(obj, result);
})();
171

172
eval = function(x) { return 2 * x; };
173
result =
174 175 176 177
  (function() {
    return (function() { return eval(2); })();
  })();
assertEquals(4, result);
178

179 180 181



182 183 184 185 186 187 188 189
// Regression test: calling a function named eval found in a context that is
// not the global context should get the global object as receiver.
result =
    (function () {
      var eval = function (x) { return this; };
      with ({}) { return eval('ignore'); }
    })();
assertEquals(this, result);