blob: 2a6daf10cb7eff76297a78a7ed06e2561f3acc61 (
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
|
// 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-arrow-function-definitions
es6id: 14.2
description: >
The `yield` token is interpreted as an IdentifierReference outside of strict
mode and outside of generator function bodies.
info: |
ArrowFunction[In, Yield] :
ArrowParameters[?Yield] [no LineTerminator here] => ConciseBody[?In]
features: [default-parameters]
flags: [noStrict]
---*/
var yield = 23;
var f, paramValue;
f = (x = yield) => { paramValue = x; };
f();
assert.sameValue(paramValue, 23);
reportCompare(0, 0);
|