diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2024-04-20 02:00:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-20 02:00:03 +0100 |
commit | 79e6751cf753612f99438ee2f158f54a1bf44815 (patch) | |
tree | fb7fea727208653bb3fb8d921bbb5a2ab8fc3a52 /cli/lsp/testing/mod.rs | |
parent | 472a37064071c66cd1311cdea2e78de8d2bc0641 (diff) |
perf(lsp): only store parsed sources for open documents (#23454)
Diffstat (limited to 'cli/lsp/testing/mod.rs')
-rw-r--r-- | cli/lsp/testing/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/lsp/testing/mod.rs b/cli/lsp/testing/mod.rs index a11d3a8cc..d285481f0 100644 --- a/cli/lsp/testing/mod.rs +++ b/cli/lsp/testing/mod.rs @@ -6,6 +6,8 @@ mod execution; pub mod lsp_custom; mod server; +pub use collectors::TestCollector; +pub use definitions::TestModule; pub use lsp_custom::TEST_RUN_CANCEL_REQUEST; pub use lsp_custom::TEST_RUN_REQUEST; pub use server::TestServer; |