Use NodeFlags.ParameterPropertyModifier rather than NodeFLags.AccessibilityModifier to detect parameter properties.

This is a continuation of #8555.
This commit is contained in:
Andy Hanson
2016-05-12 13:26:35 -07:00
parent 977a7ec1ba
commit b1cd3de89c
2 changed files with 5 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
////class Test {
//// private search1: number;
//// constructor(public search2: boolean, search3: string) {
//// constructor(public search2: boolean, readonly search3: string, search4: string) {
//// }
////}
@@ -10,3 +10,4 @@
var searchValue = "search";
verify.navigationItemsListContains("search1", "property", searchValue, "prefix");
verify.navigationItemsListContains("search2", "property", searchValue, "prefix");
verify.navigationItemsListContains("search3", "property", searchValue, "prefix");