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
|
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* 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/. */
//-----------------------------------------------------------------------------
var BUGNUMBER = 665286;
var summary = 'yield in arguments list';
var actual = '';
var expect = '';
function reported() {
function f() {
x
}
f(yield [])
}
function simplified1() {
print(yield)
}
function simplified2() {
print(1, yield)
}
reportCompare(reported.isGenerator(), true, "reported case: is generator");
reportCompare(typeof reported(), "object", "reported case: calling doesn't crash");
reportCompare(simplified1.isGenerator(), true, "simplified case 1: is generator");
reportCompare(typeof simplified1(), "object", "simplified case 1: calling doesn't crash");
reportCompare(simplified2.isGenerator(), true, "simplified case 2: is generator");
reportCompare(typeof simplified2(), "object", "simplified case 2: calling doesn't crash");
|