TypeScript/tests/baselines/reference/sourceMapValidationFunctionPropertyAssignment.types

7 lines
318 B
Text
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/sourceMapValidationFunctionPropertyAssignment.ts ===
var x = { n() { } };
2015-04-13 23:01:57 +02:00
>x : { n(): void; }, Symbol(x, Decl(sourceMapValidationFunctionPropertyAssignment.ts, 0, 3))
>{ n() { } } : { n(): void; }
2015-04-13 23:01:57 +02:00
>n : () => void, Symbol(n, Decl(sourceMapValidationFunctionPropertyAssignment.ts, 0, 9))
2014-08-15 23:33:16 +02:00