TypeScript/tests/baselines/reference/asyncArrowFunction1_es6.symbols

8 lines
276 B
Plaintext
Raw Normal View History

2015-05-07 02:33:58 +02:00
=== tests/cases/conformance/async/es6/asyncArrowFunction/asyncArrowFunction1_es6.ts ===
var foo = async (): Promise<void> => {
>foo : Symbol(foo, Decl(asyncArrowFunction1_es6.ts, 1, 3))
>Promise : Symbol(Promise, Decl(lib.d.ts, 4772, 1), Decl(lib.d.ts, 4858, 11))
2015-05-07 02:33:58 +02:00
};