Home | History | Annotate | Download | only in mjsunit
      1 // Copyright 2015 the V8 project authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 Realm.create();
      6 var object = Realm.eval(1, "Object");
      7 var f = Realm.eval(1, "function f() { return this }; f");
      8 
      9 Number.prototype.f = f;
     10 var number = 1;
     11 assertEquals(object.prototype, f.call(number).__proto__.__proto__);
     12 assertEquals(object.prototype, number.f().__proto__.__proto__);
     13 assertEquals(Realm.global(1), f());
     14