- VSCode Version: 1.18.1
- OS Version: macOS 10.12.6
- Typescript: 2.6.2
Steps to Reproduce:
- new file
- select language mode to typescript
- write code
class A {
$bar = {};
$foo() {}
}
const a = new A();
- type
a., wait for suggestWidget and select $bar. It outputs a.$bar as expected
- type
a., select $foo. It outputs a.() and "$foo" is missing
Reproduces without extensions: Yes