michaelangeloio / does-it-throw

lsp server for finding ES statements that throw!
MIT License
90 stars 0 forks source link

Call To Throw isn't included in return statement #114

Closed arivera-xealth closed 9 months ago

arivera-xealth commented 10 months ago
export class Foo {

  _SomeMethod() {
    return {
      something: this._SomeError()
    }
  }

  _SomeError() {
    throw Error()
  }
}