Closed
Description
TypeScript Version: 3.7.x-dev.20190114
Search Terms:
- completions / suggestions
- destructure
- completionInfo
Code
For the TS:
class Foo {
public pub: string;
private priv: string;
method() {
const { } = this;
}
}
Trigger completions inside the { }
in const { } = this;
Expected behavior:
Suggestions for both pub
and priv
are returned
Actual behavior:
Only a suggestion for pub
is returned
Playground Link:
Related Issues: