blob: 4f34a6753b9b88cf1cf09b0e58b66221f4731162 [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: 26.1.4
description: >
Return abrupt from ToPropertyKey(propertyKey)
info: |
26.1.4 Reflect.deleteProperty ( target, propertyKey )
...
2. Let key be ToPropertyKey(propertyKey).
3. ReturnIfAbrupt(key).
...
---*/
var p = {
toString: function() {
throw new Test262Error();
}
};
assert.throws(Test262Error, function() {
Reflect.deleteProperty({}, p);
});