TypeScript/tests/baselines/reference/asyncArrowFunction6_es6.js

9 lines
203 B
TypeScript
Raw Normal View History

2015-05-07 02:33:58 +02:00
//// [asyncArrowFunction6_es6.ts]
var foo = async (a = await): Promise<void> => {
}
//// [asyncArrowFunction6_es6.js]
var foo = (a = yield ) => __awaiter(this, void 0, void 0, function* () {
2015-06-18 20:31:03 +02:00
});