Searched defs:StaticIndexedFile (Results 1 – 2 of 2) sorted by relevance
81 pub struct StaticIndexedFile { struct82 pub file_id: FileId,83 pub folds: Vec<Fold>,84 pub inlay_hints: Vec<InlayHint>,85 pub tokens: Vec<(TextRange, TokenId)>,
246 fn add_file(&mut self, file: StaticIndexedFile) { in add_file()247 let StaticIndexedFile { file_id, tokens, folds, .. } = file; in add_file() localVariable