Closed
Description
TypeScript Version: 3.0.0-dev.20180713
Search Terms:
- isNewIdentifierLocation
- completions
- suggest
Bug
The completionInfo
request seems to always return isNewIdentifierLocation
when inside a function call such as:
console.log(c|)
Expected behavior:
I believe that isNewIdentifierLocation
should only be returned when the user is starting to write a arrow function with a parenthesized parameter list, such as:
(c|)
or
console.log((c|)