mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-15 21:36:50 -05:00
Use NodeFlags.ParameterPropertyModifier rather than NodeFLags.AccessibilityModifier to detect parameter properties.
This is a continuation of #8555.
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user