summaryrefslogtreecommitdiff
path: root/test/built-ins/Proxy/construct/return-not-object-throws-string.js
blob: 4de604814b3a2807ada555d3e8c5a18518bfbb7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 9.5.14
description: >
    Throws a TypeError if trap result is not an Object: String
info: |
    [[Construct]] ( argumentsList, newTarget)

    11. If Type(newObj) is not Object, throw a TypeError exception.
---*/

function Target() {
    this.attr = "done";
};
var P = new Proxy(Target, {
    construct: function() {
        return "";
    }
});

assert.throws(TypeError, function() {
    new P();
});