TypeScript/tests/baselines/reference/sourceMapValidationFunctionPropertyAssignment.types

7 lines
172 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/sourceMapValidationFunctionPropertyAssignment.ts ===
var x = { n() { } };
>x : { n(): void; }
>{ n() { } } : { n(): void; }
>n : () => void
2014-08-15 23:33:16 +02:00