blob: 272fd06489ce4f5a9ffe819231c65f9fb4dc3778 [file] [log] [blame]
// 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: >
Return abrupt from constructor call.
info: |
[[Construct]] ( argumentsList, newTarget)
9. Let newObj be Call(trap, handler, «target, argArray, newTarget »).
10. ReturnIfAbrupt(newObj).
features: [Proxy]
---*/
function Target() {}
var P = new Proxy(Target, {
construct: function() {
throw new Test262Error();
}
});
assert.throws(Test262Error, function() {
new P();
});