erlang-ls / erlang_ls

The Erlang Language Server
https://erlang-ls.github.io/
Apache License 2.0
620 stars 136 forks source link

Improve macro refs performance #1476

Closed plux closed 5 months ago

plux commented 5 months ago

Description

Improve performance of looking up references to macros/records.

Finding scoped references can be done in two ways:

It varies from case to case which is the fastest, so we race both functions to get the quickest answer.

Fixes #1309.