TypeScript/tests/cases/fourslash/completionListInObjectLiteral.ts
2014-07-29 12:17:44 -07:00

16 lines
331 B
TypeScript

/// <reference path="fourslash.ts" />
////interface point {
//// x: number;
//// y: number;
////}
////interface thing {
//// name: string;
//// pos: point;
////}
////var t: thing;
////t.pos = { x: 4, y: 3 + t./**/ };
goTo.marker();
verify.not.memberListContains('x');
verify.memberListContains('name');