mirror of
https://github.com/tc39/test262.git
synced 2025-07-03 04:04:42 +02:00
From the ES6 specification: > ## PropertyDefinition : IdentifierReference > > 1. Let propName be StringValue of IdentifierReference. > 2. Let exprValue be the result of evaluating IdentifierReference. > 3. ReturnIfAbrupt(exprValue). > 4. Let propValue be GetValue(exprValue). > 5. ReturnIfAbrupt(propValue). > 6. Assert: enumerable is true. > 7. Return CreateDataPropertyOrThrow(object, propName, propValue).
22 lines
508 B
JavaScript
22 lines
508 B
JavaScript
// Copyright (C) Copyright 2015 the V8 project authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
/*---
|
|
es6id: 12.2.5.9
|
|
description: >
|
|
Errors thrown during IdentifierReference evaluation are forwarded to the
|
|
runtime.
|
|
flags: [noStrict]
|
|
features: [Symbol, Symbol.unscopables]
|
|
---*/
|
|
|
|
var obj = {
|
|
attr: null,
|
|
get [Symbol.unscopables]() { throw new Test262Error(); }
|
|
};
|
|
|
|
assert.throws(Test262Error, function() {
|
|
with (obj) {
|
|
({ attr });
|
|
}
|
|
});
|