diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2022-01-24 19:01:33 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-24 19:01:33 +1100 |
commit | 1a3983a538e8609eff362a1231d50a2182691a73 (patch) | |
tree | 697a16cc7de1bfeef7b28307e6f01ead735b7ae1 /cli/lsp/performance.rs | |
parent | 3ec248cff8fff1a41c2b2ad5301e7aa3db00c6a8 (diff) |
perf(lsp): improve some tsc op hot paths (#13473)
Diffstat (limited to 'cli/lsp/performance.rs')
-rw-r--r-- | cli/lsp/performance.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/lsp/performance.rs b/cli/lsp/performance.rs index 05e586ffd..c8c467809 100644 --- a/cli/lsp/performance.rs +++ b/cli/lsp/performance.rs @@ -83,7 +83,7 @@ impl Default for Performance { fn default() -> Self { Self { counts: Default::default(), - max_size: 1_000, + max_size: 3_000, measures: Default::default(), } } |