<!-- BUGS: Please use this template. --> <!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript --> <!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md --> <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> **TypeScript Version:** 2.7.0-dev.20171214 **Code** ```ts class Foo {} function bar(x: Foo) {} bar(new F) ``` Trigger completions after `F` in `bar(new F)` **Expected behavior:** `Foo` completion is marked as `isRecommended` **Actual behavior:** Normal entry is returned: ``` { "name": "Foo", "kind": "class", "kindModifiers": "", "sortText": "0" }, ```