mirror of
https://github.com/tc39/test262.git
synced 2025-05-31 04:00:34 +02:00
While we're at it, use assert() instead of assert.sameValue() for brevity, if we are not specifically testing that the return value of hasOwnProperty is the value true or false; and add more informative assertion messages to help with debugging. In some cases, the Object.hasOwnProperty.call could be replaced with verifyProperty(), if the property descriptor was also being verified at the same time. This fixes some tests that were faulty to begin with: a common mistake was Object.hasOwnProperty(obj, prop) which is probably going to return false when that's not what you want. The only instances left of `Object.hasOwnProperty` are one regression test in implementation-contributed which I can't tell if it was intentionally needed to trigger the regression, and a few instances of `Object.hasOwnProperty('prototype')` which would defeat the purpose to convert into `Object.prototype.hasOwnProperty.call(Object, 'prototype')` form. Closes: #3524
36 lines
852 B
JavaScript
36 lines
852 B
JavaScript
// Copyright (C) 2015 the V8 project authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
description: >
|
|
When the `yield` keyword occurs within the PropertyName of a
|
|
GeneratorMethod within a generator function, it behaves as a
|
|
YieldExpression.
|
|
es6id: 14.4
|
|
features: [generators]
|
|
flags: [noStrict]
|
|
---*/
|
|
|
|
var obj = null;
|
|
var yield = 'propNameViaIdentifier';
|
|
var iter = (function*() {
|
|
obj = {
|
|
*[yield]() {}
|
|
};
|
|
})();
|
|
|
|
iter.next();
|
|
|
|
assert.sameValue(obj, null);
|
|
|
|
iter.next('propNameViaExpression');
|
|
|
|
assert(
|
|
!Object.prototype.hasOwnProperty.call(obj, 'propNameViaIdentifier'),
|
|
"The property name is not taken from the 'yield' variable"
|
|
);
|
|
assert(
|
|
Object.prototype.hasOwnProperty.call(obj, 'propNameViaExpression'),
|
|
"The property name is taken from the yield expression"
|
|
);
|