Move NavigateTo over to using the new pattern matcher.

This commit is contained in:
Cyrus Najmabadi
2015-02-22 21:25:43 -08:00
parent a2d0d5908e
commit fd1b5875e2
18 changed files with 175 additions and 139 deletions

View File

@@ -229,6 +229,7 @@ module ts.server {
kind: entry.kind,
kindModifiers: entry.kindModifiers,
matchKind: entry.matchKind,
isCaseSensitive: entry.isCaseSensitive,
fileName: fileName,
textSpan: ts.createTextSpanFromBounds(start, end)
};

View File

@@ -707,6 +707,11 @@ declare module ts.server.protocol {
* exact, substring, or prefix.
*/
matchKind?: string;
/**
* If this was a case sensitive or insensitive match.
*/
isCaseSensitive?: boolean;
/**
* Optional modifiers for the kind (such as 'public').