summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/expressions/yield/star-in-rltn-expr.js
blob: 3aa00be2b2f8f7e3a9cfb9bf68ac9787b9d9bbe0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-generator-function-definitions
es6id: 14.4
description: >
  YieldExpression contextually recognizes the `in` keyword as part of a
  RelationalExpression
info: |
  Syntax

  yield [no LineTerminator here] AssignmentExpression[?In, +Yield]
features: [generators, Symbol.iterator]
---*/

var obj = Object.create({ hit: true });
var iter, iterResult, value;
Boolean.prototype[Symbol.iterator] = function* () { yield this.valueOf(); };
function* g() {
  value = yield * 'hit' in obj;
  value = yield * 'miss' in obj;
}

iter = g();

iterResult = iter.next('first');

assert.sameValue(iterResult.done, false, '`done` property (first iteration)');
assert.sameValue(iterResult.value, true, '`value` property (first iteration)');
assert.sameValue(
  value, undefined, 'generator paused prior to evaluating AssignmentExpression'
);

iterResult = iter.next('second');

assert.sameValue(iterResult.done, false, '`done` property (second iteration)');
assert.sameValue(
  iterResult.value, false, '`value` property (second iteration)'
);
assert.sameValue(value, undefined, 'value of first AssignmentExpression');

iterResult = iter.next('third');

assert.sameValue(iterResult.done, true, '`done` property (third iteration)');
assert.sameValue(
  iterResult.value, undefined, '`value` property (third iteration)'
);
assert.sameValue(value, undefined, 'value of second AssignmentExpression');

reportCompare(0, 0);