Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
11.0, 12.0
-
None
-
None
Description
Example code:
class Test { test(config) { this.conig = {}; Object.assign(this.config, config); } }
IDE marks `this` in line 4 and shows warning "The global variable "this" not declared", at the same time it shows no warning in line 3.
Expected behavior:
No warning should be shown, that is completely correct code.