TypeScript/tests/baselines/reference/YieldExpression3_es6.js
2016-04-08 18:12:25 -07:00

12 lines
149 B
TypeScript

//// [YieldExpression3_es6.ts]
function* foo() {
yield
yield
}
//// [YieldExpression3_es6.js]
function* foo() {
yield;
yield;
}