You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since 99% of build_runner time is anaylzing files, and we've already done that if we're running vscode or Android Studio, is it possible for build_runner to just use the existing LSP server to do it's parsing?
In theory this allow us to make changes with the same speed of build_runner watch
The text was updated successfully, but these errors were encountered:
Actually--based on the benchmarking I've been doing--very little of build_runner's time on big projects is spent analyzing files.
So the first optimization is to speed things up so analyzing files really is most of the work.
After that, yes, it might make sense to share work with another running analyzer instance.
davidmorgan
changed the title
can build_runner use an existing lsp server instead of reanalyzing everything?
Share analysis results with a running analysis server
Jan 30, 2025
Since 99% of build_runner time is anaylzing files, and we've already done that if we're running vscode or Android Studio, is it possible for build_runner to just use the existing LSP server to do it's parsing?
In theory this allow us to make changes with the same speed of build_runner watch
The text was updated successfully, but these errors were encountered: