Support navTo for special assignment kinds (#18154)

* Support navTo for special assignment kinds

* Return ScriptElementKind.unknown
This commit is contained in:
Andy
2017-09-07 07:45:11 -07:00
committed by GitHub
parent b533b24686
commit 7541c705bf
4 changed files with 50 additions and 0 deletions

View File

@@ -2628,4 +2628,6 @@ namespace ts {
export function and<T>(f: (arg: T) => boolean, g: (arg: T) => boolean) {
return (arg: T) => f(arg) && g(arg);
}
export function assertTypeIsNever(_: never): void {}
}