TypeScript/tests/cases/fourslash_old/completionListInTypedObjectLiteralsWithPartialPropertyNames2.ts
2014-07-12 17:30:19 -07:00

14 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);