TypeScript/tests/baselines/reference/generatorES6_5.js

10 lines
140 B
TypeScript
Raw Normal View History

//// [generatorES6_5.ts]
function* foo() {
yield a ? b : c;
}
//// [generatorES6_5.js]
function* foo() {
yield a ? b : c;
}