Home
last modified time | relevance | path

Searched defs:StaticIndexedFile (Results 1 – 2 of 2) sorted by relevance

/third_party/rust/rust/src/tools/rust-analyzer/crates/ide/src/
Dstatic_index.rs81 pub struct StaticIndexedFile { struct
82 pub file_id: FileId,
83 pub folds: Vec<Fold>,
84 pub inlay_hints: Vec<InlayHint>,
85 pub tokens: Vec<(TextRange, TokenId)>,
/third_party/rust/rust/src/tools/rust-analyzer/crates/rust-analyzer/src/cli/
Dlsif.rs246 fn add_file(&mut self, file: StaticIndexedFile) { in add_file()
247 let StaticIndexedFile { file_id, tokens, folds, .. } = file; in add_file() localVariable