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

6 lines
172 B
Text

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