TypeScript/tests/baselines/reference/sourceMapValidationFunctionPropertyAssignment.types
2015-04-15 16:44:20 -07:00

7 lines
172 B
Plaintext

=== tests/cases/compiler/sourceMapValidationFunctionPropertyAssignment.ts ===
var x = { n() { } };
>x : { n(): void; }
>{ n() { } } : { n(): void; }
>n : () => void