tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

11.2.3-3_4.js (865B)


      1 // Copyright (c) 2012 Ecma International.  All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 es5id: 11.2.3-3_4
      6 description: >
      7    Call arguments are evaluated before the check is made to see if
      8    the object is actually callable (property)
      9 ---*/
     10 
     11    var fooCalled = false;
     12    function foo(){ fooCalled = true; } 
     13    
     14    var o = { }; 
     15    Object.defineProperty(o, "bar", {get: function()  {this.barGetter = true; return 42;}, 
     16                                     set: function(x) {this.barSetter = true; }});
     17 assert.throws(TypeError, function() {
     18        o.bar( foo() );
     19        throw new Test262Error("o.bar does not exist!");
     20 });
     21 assert.sameValue(fooCalled, true, 'fooCalled');
     22 assert.sameValue(o.barGetter, true, 'o.barGetter');
     23 assert.sameValue(o.barSetter, undefined, 'o.barSetter');
     24 
     25 reportCompare(0, 0);