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

16 lines
307 B
TypeScript

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