TypeScript/tests/baselines/reference/sourceMapValidationFunctionPropertyAssignment.types
2014-08-15 14:37:48 -07:00

8 lines
203 B
Plaintext

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