tor-browser

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

create-handler-not-object-throw-string.js (397B)


      1 // Copyright (C) 2015 the V8 project authors. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 /*---
      4 es6id: 9.5.15
      5 description: >
      6    Proxy ( target, handler )
      7    ...
      8    3. If Type(handler) is not Object, throw a TypeError exception.
      9    ...
     10 features: [Proxy]
     11 ---*/
     12 
     13 assert.throws(TypeError, function() {
     14  new Proxy({}, "");
     15 });
     16 
     17 reportCompare(0, 0);