If you request completion at the /**/ below...
class C {
constructor() {
this.x = 'foo';
}
}
let c = new C();
c./**/;
Expected behavior:
Completion list should contain x.
Actual behavior:
Completion list does not contain x.
Currently there is an error at this.x = 'foo', "Property 'x' does not exist in 'C'". That error should stay.
If you request completion at the
/**/below...Expected behavior:
Completion list should contain
x.Actual behavior:
Completion list does not contain
x.Currently there is an error at
this.x = 'foo', "Property 'x' does not exist in 'C'". That error should stay.