TypeScript/tests/cases/fourslash/completionListInObjectLiteral3.ts

16 lines
366 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
/// <reference path='fourslash.ts'/>
////interface IASTNode {
//// name: string;
//// children: IASTNode[];
////}
////var ast2: IASTNode = {
//// /**/
////}
goTo.marker()
verify.completionListContains('name');
verify.completionListContains('children');
verify.not.completionListContains('any');
verify.not.completionListContains('number');