TypeScript/tests/cases/compiler/importHelpersNoHelpersForAsyncGenerators.ts

17 lines
320 B
TypeScript
Raw Normal View History

2017-05-04 22:09:35 +02:00
// @importHelpers: true
// @target: es5
// @module: commonjs
// @lib: esnext
// @moduleResolution: classic
// @experimentalDecorators: true
// @emitDecoratorMetadata: true
// @filename: main.ts
export async function * f() {
await 1;
yield 2;
yield* [3];
}
// @filename: tslib.d.ts
export {}