no-yield.js (466B)
1 // Copyright (C) 2013 the V8 project authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 description: > 6 Generators declared with GeneratorExpression syntax do not require a 7 `yield` expression. 8 es6id: 14.4 9 features: [generators] 10 ---*/ 11 12 var result; 13 var foo = function*(a) {}; 14 15 result = foo(3).next(); 16 17 assert.sameValue(result.value, undefined); 18 assert.sameValue(result.done, true); 19 20 reportCompare(0, 0);