TypeScript/tests/cases/compiler/generatorES6_4.ts

6 lines
65 B
TypeScript
Raw Normal View History

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