mirror of https://github.com/tc39/test262.git
30 lines
855 B
JavaScript
30 lines
855 B
JavaScript
|
// Copyright (C) 2013 the V8 project authors. All rights reserved.
|
||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||
|
|
||
|
/*---
|
||
|
description: >
|
||
|
`yield` is a valid BindingIdentifier for GeneratorMethods outside of
|
||
|
strict mode.
|
||
|
features: [generators]
|
||
|
es6id: 12.1.1
|
||
|
---*/
|
||
|
|
||
|
var iter, result;
|
||
|
class A {
|
||
|
*yield() { (yield 3) + (yield 4); }
|
||
|
}
|
||
|
|
||
|
iter = A.prototype.yield();
|
||
|
|
||
|
result = iter.next();
|
||
|
assert.sameValue(result.value, 3, 'First result `value`');
|
||
|
assert.sameValue(result.done, false, 'First result `done` flag');
|
||
|
|
||
|
result = iter.next();
|
||
|
assert.sameValue(result.value, 4, 'Second result `value`');
|
||
|
assert.sameValue(result.done, false, 'Second result `done` flag');
|
||
|
|
||
|
result = iter.next();
|
||
|
assert.sameValue(result.value, undefined, 'Third result `value`');
|
||
|
assert.sameValue(result.done, true, 'Third result `done` flag');
|