TypeScript/tests/cases/fourslash/navigationItemsInConstructorsExactMatch.ts
2015-03-02 14:41:44 -08:00

12 lines
462 B
TypeScript

/// <reference path="fourslash.ts"/>
////class Test {
//// private search1: number;
//// constructor(public search2: boolean, search3: string) {
//// }
////}
// Search for properties defined in the constructor, but not other constructor paramters
var searchValue = "search";
verify.navigationItemsListContains("search1", "property", searchValue, "prefix");
verify.navigationItemsListContains("search2", "property", searchValue, "prefix");