sourcegraph / javascript-typescript-langserver

JavaScript and TypeScript code intelligence through the Language Server Protocol

Home Page:https://sourcegraph.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

operand checked twice in or statement.

francisschmaltz opened this issue · comments

On line 1011 of src/typescript-service.ts

if (!params.query.package || !params.query.package) {
     return [symbol]
}

should be

if (!params.query.package) {
     return [symbol]
}

Wanna do a PR?

Yeah, just edit the code @francisschmaltz :)