TypeScript/tests/baselines/reference/FunctionDeclaration7_es6.js
2016-11-17 23:17:42 -08:00

14 lines
318 B
TypeScript

//// [FunctionDeclaration7_es6.ts]
function*bar() {
// 'yield' here is an identifier, and not a yield expression.
function*foo(a = yield) {
}
}
//// [FunctionDeclaration7_es6.js]
function* bar() {
// 'yield' here is an identifier, and not a yield expression.
function* foo(a = yield) {
}
}