Rename ra_arena

This commit is contained in:
Aleksey Kladov 2020-08-12 16:22:05 +02:00
parent 6be5ab0200
commit 98baa9b569
30 changed files with 40 additions and 40 deletions

18
Cargo.lock generated
View file

@ -45,6 +45,10 @@ version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33954243bd79057c2de7338850b85983a44588021f8a5fee574a8888c6de4344"
[[package]]
name = "arena"
version = "0.0.0"
[[package]]
name = "arrayvec"
version = "0.5.1"
@ -899,10 +903,6 @@ dependencies = [
"proc-macro2",
]
[[package]]
name = "ra_arena"
version = "0.1.0"
[[package]]
name = "ra_assists"
version = "0.1.0"
@ -977,6 +977,7 @@ name = "ra_hir_def"
version = "0.1.0"
dependencies = [
"anymap",
"arena",
"drop_bomb",
"either",
"expect",
@ -985,7 +986,6 @@ dependencies = [
"itertools",
"log",
"once_cell",
"ra_arena",
"ra_cfg",
"ra_db",
"ra_hir_expand",
@ -1003,9 +1003,9 @@ dependencies = [
name = "ra_hir_expand"
version = "0.1.0"
dependencies = [
"arena",
"either",
"log",
"ra_arena",
"ra_db",
"ra_mbe",
"ra_parser",
@ -1020,6 +1020,7 @@ dependencies = [
name = "ra_hir_ty"
version = "0.1.0"
dependencies = [
"arena",
"arrayvec",
"chalk-ir",
"chalk-recursive",
@ -1028,7 +1029,6 @@ dependencies = [
"expect",
"itertools",
"log",
"ra_arena",
"ra_db",
"ra_hir_def",
"ra_hir_expand",
@ -1141,12 +1141,12 @@ dependencies = [
name = "ra_prof"
version = "0.1.0"
dependencies = [
"arena",
"backtrace",
"cfg-if",
"libc",
"once_cell",
"perf-event",
"ra_arena",
]
[[package]]
@ -1154,10 +1154,10 @@ name = "ra_project_model"
version = "0.1.0"
dependencies = [
"anyhow",
"arena",
"cargo_metadata",
"log",
"paths",
"ra_arena",
"ra_cfg",
"ra_db",
"ra_proc_macro",

View file

@ -1,9 +1,9 @@
[package]
edition = "2018"
name = "ra_arena"
version = "0.1.0"
authors = ["rust-analyzer developers"]
name = "arena"
version = "0.0.0"
license = "MIT OR Apache-2.0"
authors = ["rust-analyzer developers"]
edition = "2018"
[lib]
doctest = false

View file

@ -22,7 +22,7 @@ smallvec = "1.4.0"
stdx = { path = "../stdx" }
ra_arena = { path = "../ra_arena" }
arena = { path = "../arena" }
ra_db = { path = "../ra_db" }
ra_syntax = { path = "../ra_syntax" }
ra_prof = { path = "../ra_prof" }

View file

@ -2,12 +2,12 @@
use std::sync::Arc;
use arena::{map::ArenaMap, Arena};
use either::Either;
use hir_expand::{
name::{AsName, Name},
InFile,
};
use ra_arena::{map::ArenaMap, Arena};
use ra_syntax::ast::{self, NameOwner, VisibilityOwner};
use tt::{Delimiter, DelimiterKind, Leaf, Subtree, TokenTree};

View file

@ -5,10 +5,10 @@ pub mod scope;
use std::{mem, ops::Index, sync::Arc};
use arena::{map::ArenaMap, Arena};
use drop_bomb::DropBomb;
use either::Either;
use hir_expand::{ast_id_map::AstIdMap, hygiene::Hygiene, AstId, HirFileId, InFile, MacroDefId};
use ra_arena::{map::ArenaMap, Arena};
use ra_cfg::CfgOptions;
use ra_db::CrateId;
use ra_prof::profile;

View file

@ -3,13 +3,13 @@
use std::{any::type_name, sync::Arc};
use arena::Arena;
use either::Either;
use hir_expand::{
hygiene::Hygiene,
name::{name, AsName, Name},
HirFileId, MacroDefId, MacroDefKind,
};
use ra_arena::Arena;
use ra_syntax::{
ast::{
self, ArgListOwner, ArrayExprKind, AstChildren, LiteralKind, LoopBodyOwner, NameOwner,

View file

@ -1,8 +1,8 @@
//! Name resolution for expressions.
use std::sync::Arc;
use arena::{Arena, Idx};
use hir_expand::name::Name;
use ra_arena::{Arena, Idx};
use rustc_hash::FxHashMap;
use crate::{

View file

@ -12,8 +12,8 @@
//!
//! See also a neighboring `body` module.
use arena::{Idx, RawId};
use hir_expand::name::Name;
use ra_arena::{Idx, RawId};
use ra_syntax::ast::RangeOp;
use crate::{

View file

@ -4,12 +4,12 @@
//! in rustc.
use std::sync::Arc;
use arena::{map::ArenaMap, Arena};
use either::Either;
use hir_expand::{
name::{name, AsName, Name},
InFile,
};
use ra_arena::{map::ArenaMap, Arena};
use ra_db::FileId;
use ra_prof::profile;
use ra_syntax::ast::{self, GenericParamsOwner, NameOwner, TypeBoundsOwner};

View file

@ -13,6 +13,7 @@ use std::{
sync::Arc,
};
use arena::{Arena, Idx, RawId};
use ast::{AstNode, AttrsOwner, NameOwner, StructKind};
use either::Either;
use hir_expand::{
@ -21,7 +22,6 @@ use hir_expand::{
name::{name, AsName, Name},
HirFileId, InFile,
};
use ra_arena::{Arena, Idx, RawId};
use ra_syntax::{ast, match_ast};
use rustc_hash::FxHashMap;
use smallvec::SmallVec;

View file

@ -2,8 +2,8 @@
use std::{collections::hash_map::Entry, mem, sync::Arc};
use arena::map::ArenaMap;
use hir_expand::{ast_id_map::AstIdMap, hygiene::Hygiene, HirFileId};
use ra_arena::map::ArenaMap;
use ra_syntax::{
ast::{self, ModuleItemOwner},
SyntaxNode,

View file

@ -52,11 +52,11 @@ mod test_db;
use std::hash::{Hash, Hasher};
use arena::Idx;
use hir_expand::{
ast_id_map::FileAstId, eager::expand_eager_macro, hygiene::Hygiene, AstId, HirFileId, InFile,
MacroCallId, MacroCallKind, MacroDefId, MacroDefKind,
};
use ra_arena::Idx;
use ra_db::{impl_intern_key, salsa, CrateId};
use ra_syntax::ast;

View file

@ -56,8 +56,8 @@ mod tests;
use std::sync::Arc;
use arena::Arena;
use hir_expand::{diagnostics::DiagnosticSink, name::Name, InFile};
use ra_arena::Arena;
use ra_db::{CrateId, Edition, FileId};
use ra_prof::profile;
use ra_syntax::ast;

View file

@ -1208,7 +1208,7 @@ fn is_macro_rules(path: &ModPath) -> bool {
#[cfg(test)]
mod tests {
use crate::{db::DefDatabase, test_db::TestDB};
use ra_arena::Arena;
use arena::Arena;
use ra_db::{fixture::WithFixture, SourceDatabase};
use super::*;

View file

@ -1,7 +1,7 @@
//! Utilities for mapping between hir IDs and the surface syntax.
use arena::map::ArenaMap;
use hir_expand::InFile;
use ra_arena::map::ArenaMap;
use crate::{db::DefDatabase, item_tree::ItemTreeNode, AssocItemLoc, ItemLoc};

View file

@ -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 ra_arena::{map::ArenaMap, Arena, Idx, RawId};
use arena::{map::ArenaMap, Arena, Idx, RawId};
pub(crate) struct Trace<T, V> {
arena: Option<Arena<T>>,

View file

@ -13,7 +13,7 @@ log = "0.4.8"
either = "1.5.3"
rustc-hash = "1.0.0"
ra_arena = { path = "../ra_arena" }
arena = { path = "../arena" }
ra_db = { path = "../ra_db" }
ra_syntax = { path = "../ra_syntax" }
ra_parser = { path = "../ra_parser" }

View file

@ -12,7 +12,7 @@ use std::{
marker::PhantomData,
};
use ra_arena::{Arena, Idx};
use arena::{Arena, Idx};
use ra_syntax::{ast, AstNode, AstPtr, SyntaxNode, SyntaxNodePtr};
/// `AstId` points to an AST node in a specific file.

View file

@ -20,7 +20,7 @@ stdx = { path = "../stdx" }
hir_def = { path = "../ra_hir_def", package = "ra_hir_def" }
hir_expand = { path = "../ra_hir_expand", package = "ra_hir_expand" }
ra_arena = { path = "../ra_arena" }
arena = { path = "../arena" }
ra_db = { path = "../ra_db" }
ra_prof = { path = "../ra_prof" }
ra_syntax = { path = "../ra_syntax" }

View file

@ -2,11 +2,11 @@
use std::sync::Arc;
use arena::map::ArenaMap;
use hir_def::{
db::DefDatabase, expr::ExprId, DefWithBodyId, FunctionId, GenericDefId, ImplId, LocalFieldId,
TypeParamId, VariantId,
};
use ra_arena::map::ArenaMap;
use ra_db::{impl_intern_key, salsa, CrateId, Upcast};
use ra_prof::profile;

View file

@ -218,13 +218,13 @@
//! ```
use std::sync::Arc;
use arena::Idx;
use hir_def::{
adt::VariantData,
body::Body,
expr::{Expr, Literal, Pat, PatId},
AdtId, EnumVariantId, VariantId,
};
use ra_arena::Idx;
use smallvec::{smallvec, SmallVec};
use crate::{db::HirDatabase, ApplicationTy, InferenceResult, Ty, TypeCtor};

View file

@ -18,6 +18,7 @@ use std::mem;
use std::ops::Index;
use std::sync::Arc;
use arena::map::ArenaMap;
use hir_def::{
body::Body,
data::{ConstData, FunctionData, StaticData},
@ -30,7 +31,6 @@ use hir_def::{
TypeAliasId, VariantId,
};
use hir_expand::{diagnostics::DiagnosticSink, name::name};
use ra_arena::map::ArenaMap;
use ra_prof::profile;
use ra_syntax::SmolStr;
use rustc_hash::FxHashMap;

View file

@ -7,6 +7,7 @@
//! This usually involves resolving names, collecting generic arguments etc.
use std::{iter, sync::Arc};
use arena::map::ArenaMap;
use hir_def::{
adt::StructKind,
builtin_type::BuiltinType,
@ -19,7 +20,6 @@ use hir_def::{
UnionId, VariantId,
};
use hir_expand::name::Name;
use ra_arena::map::ArenaMap;
use ra_db::CrateId;
use smallvec::SmallVec;
use stdx::impl_from;

View file

@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0"
doctest = false
[dependencies]
ra_arena = { path = "../ra_arena" }
arena = { path = "../arena" }
once_cell = "1.3.1"
backtrace = { version = "0.3.44", optional = true }
cfg-if = "0.1.10"

View file

@ -1,7 +1,7 @@
//! A simple tree implementation which tries to not allocate all over the place.
use std::ops;
use ra_arena::Arena;
use arena::Arena;
#[derive(Default)]
pub struct Tree<T> {
@ -9,7 +9,7 @@ pub struct Tree<T> {
current_path: Vec<(Idx<T>, Option<Idx<T>>)>,
}
pub type Idx<T> = ra_arena::Idx<Node<T>>;
pub type Idx<T> = arena::Idx<Node<T>>;
impl<T> Tree<T> {
pub fn start(&mut self)

View file

@ -14,7 +14,7 @@ rustc-hash = "1.1.0"
cargo_metadata = "0.11.1"
ra_arena = { path = "../ra_arena" }
arena = { path = "../arena" }
ra_cfg = { path = "../ra_cfg" }
ra_db = { path = "../ra_db" }
ra_toolchain = { path = "../ra_toolchain" }

View file

@ -8,9 +8,9 @@ use std::{
};
use anyhow::{Context, Result};
use arena::{Arena, Idx};
use cargo_metadata::{BuildScript, CargoOpt, Message, MetadataCommand, PackageId};
use paths::{AbsPath, AbsPathBuf};
use ra_arena::{Arena, Idx};
use ra_db::Edition;
use rustc_hash::FxHashMap;

View file

@ -3,8 +3,8 @@
use std::{convert::TryFrom, env, ops, path::Path, process::Command};
use anyhow::{bail, format_err, Result};
use arena::{Arena, Idx};
use paths::{AbsPath, AbsPathBuf};
use ra_arena::{Arena, Idx};
use crate::utf8_stdout;