TypeScript/tests/cases/fourslash/completionListInTypedObjectLiteralsWithPartialPropertyNames2.ts
2014-09-15 13:53:25 -07:00

15 lines
283 B
TypeScript

/// <reference path="fourslash.ts" />
////interface MyPoint {
//// x1: number;
//// y1: number;
////}
////var p15: MyPoint = {
//// /**/x1: 0,
////};
goTo.marker();
verify.memberListContains("x1");
verify.memberListContains("y1");
verify.memberListCount(2);