mirror of https://github.com/tc39/test262.git
21 lines
460 B
JavaScript
21 lines
460 B
JavaScript
// Copyright 2015 Cubane Canada, Inc. All rights reserved.
|
|
// See LICENSE for details.
|
|
|
|
/*---
|
|
info: |
|
|
Generator can be declared with GeneratorExpression syntax
|
|
es6id: 14.4
|
|
author: Sam Mikes
|
|
description: can create generator function expressions (no name)
|
|
features: [generators]
|
|
---*/
|
|
|
|
var f = function *(a) { yield a+1; return; };
|
|
|
|
assert.sameValue(f.name, 'f');
|
|
|
|
var g = f(3);
|
|
|
|
assert.sameValue(g.next().value, 4);
|
|
assert.sameValue(g.next().done, true);
|