aeschli / typescript-vscode-sh-plugin

TypeScript plugin that proves richer semantic highlighing

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Function becomes a contructor when 'this' is used.

aeschli opened this issue · comments

Reproduced with

const x = {
  xy: function () {
    this.id = 42;
  }
}

The appearance of a this makes typescript think this is a class.

image