When a class name is renamed, the constructor call is not updated.
Input
class c {}
const f = new c();
Output
class wzpnig {}
const jnciqk = new c; // wrong
Expected
class wzpnig {}
const jnciqk = new wzpnig();
The class declaration is renamed, but new c(...) still uses the old name
When a class name is renamed, the constructor call is not updated.
Input
Output
Expected
The class declaration is renamed, but
new c(...)still uses the old name