We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74a19b7 commit 200fdc1Copy full SHA for 200fdc1
turbopack/crates/turbopack-trace-server/src/span_ref.rs
@@ -345,7 +345,7 @@ impl<'a> SpanRef<'a> {
345
346
pub fn search(&self, query: &str) -> impl Iterator<Item = SpanRef<'a>> {
347
let mut query_items = query.split(",").map(str::trim);
348
- let index: &HashMap<String, Vec<std::num::NonZero<usize>>> = self.search_index();
+ let index = self.search_index();
349
let mut result = HashSet::new();
350
let query = query_items.next().unwrap();
351
for (key, spans) in index {
0 commit comments