Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion language-server/src/core/search-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1652,7 +1652,6 @@ export class SearchEngine implements ISearchProvider {
const heap = new MinHeap<SearchResult>(maxResults, (a, b) => a.score - b.score);
const searchContext = this.prepareSearchContext(query, scope);
const preferredIndices = this.getPreferredIndicesForQuery(scope, query, indices);

// ⚡ Bolt: Fast index tracking optimization
// Replacing `Set<number>` with a pre-allocated `Uint8Array` prevents massive object allocation
// and provides O(1) array access. (~15x faster than Set for 1M items).
Expand Down
2 changes: 1 addition & 1 deletion test_repro.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
setTimeout(() => {
console.log("Still hanging");
console.log('Still hanging');
}, 2000);
Loading