mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 14:21:44 +00:00
Remove map module from la-arena public API
It’s unlikely that more items will be added to the module, so it’s simpler for users if `ArenaMap` is re-exported and the module made private.
This commit is contained in:
parent
f88f3d6885
commit
9b5ba090db
12 changed files with 12 additions and 13 deletions
|
@ -9,7 +9,7 @@
|
|||
//! absolute offsets. The `Trace` structure (inspired, at least in name, by
|
||||
//! Kotlin's `BindingTrace`) allows use the same code to compute both
|
||||
//! projections.
|
||||
use la_arena::{map::ArenaMap, Arena, Idx, RawId};
|
||||
use la_arena::{Arena, ArenaMap, Idx, RawId};
|
||||
|
||||
pub(crate) struct Trace<T, V> {
|
||||
arena: Option<Arena<T>>,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue