summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/arrow-functions/yield-in-arrow.js
blob: 8b849a1c88501908ef5b841940a712c9f4168da6 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

const yieldInParameters = [
    `(a = yield) => {}`,
    `(a = yield /a/g) => {}`, // Should parse as division, not yield expression with regexp.
    `yield => {};`,
    `(yield) => {};`,
    `(yield = 0) => {};`,
    `([yield]) => {};`,
    `([yield = 0]) => {};`,
    `([...yield]) => {};`,
    `({a: yield}) => {};`,
    `({yield}) => {};`,
    `({yield = 0}) => {};`,
];

const yieldInBody = [
    `() => yield;`,
    `() => yield /a/g;`,
    `() => { var x = yield; }`,
    `() => { var x = yield /a/g; }`,

    `() => { var yield; };`,
    `() => { var yield = 0; };`,
    `() => { var [yield] = []; };`,
    `() => { var [yield = 0] = []; };`,
    `() => { var [...yield] = []; };`,
    `() => { var {a: yield} = {}; };`,
    `() => { var {yield} = {}; };`,
    `() => { var {yield = 0} = {}; };`,

    `() => { let yield; };`,
    `() => { let yield = 0; };`,
    `() => { let [yield] = []; };`,
    `() => { let [yield = 0] = []; };`,
    `() => { let [...yield] = []; };`,
    `() => { let {a: yield} = {}; };`,
    `() => { let {yield} = {}; };`,
    `() => { let {yield = 0} = {}; };`,

    `() => { const yield = 0; };`,
    `() => { const [yield] = []; };`,
    `() => { const [yield = 0] = []; };`,
    `() => { const [...yield] = []; };`,
    `() => { const {a: yield} = {}; };`,
    `() => { const {yield} = {}; };`,
    `() => { const {yield = 0} = {}; };`,
];


// Script context.
for (let test of [...yieldInParameters, ...yieldInBody]) {
    eval(test);
    assertThrowsInstanceOf(() => eval(`"use strict"; ${test}`), SyntaxError);
}

// Function context.
for (let test of [...yieldInParameters, ...yieldInBody]) {
    eval(`function f() { ${test} }`);
    assertThrowsInstanceOf(() => eval(`"use strict"; function f() { ${test} }`), SyntaxError);
}

// Generator context.
for (let test of yieldInParameters) {
    assertThrowsInstanceOf(() => eval(`function* g() { ${test} }`), SyntaxError);
}
for (let test of yieldInBody) {
    eval(`function* g() { ${test} }`);
}
for (let test of [...yieldInParameters, ...yieldInBody]) {
    assertThrowsInstanceOf(() => eval(`"use strict"; function* g() { ${test} }`), SyntaxError);
}

if (typeof reportCompare === "function")
    reportCompare(0, 0, "ok");