TypeScript/tests/cases/compiler/generatorES6_4.ts
2015-04-09 22:57:13 -07:00

6 lines
65 B
TypeScript

// @target: es6
var v = {
*foo() {
yield 0
}
}