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

7 lines
216 B
Plaintext

=== tests/cases/conformance/parser/ecmascript5/PropertyAssignments/parserFunctionPropertyAssignment2.ts ===
var v = { 0() { } };
>v : { 0: () => void; }
>{ 0() { } } : { 0: () => void; }
>0() { } : () => void