diff options
author | Aleksey Kladov <[email protected]> | 2020-08-13 15:28:27 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-08-13 15:29:33 +0100 |
commit | b28c54a2c239acd73f2eea80fda9ee3960d2c046 (patch) | |
tree | 1bf0ea193bdb3b16ff42c2c01118b13a4276b2bb /crates/ra_hir_ty | |
parent | b7aa4898e0841ab8199643f89a0caa967b698ca8 (diff) |
Rename ra_hir_def -> hir_def
Diffstat (limited to 'crates/ra_hir_ty')
-rw-r--r-- | crates/ra_hir_ty/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/ra_hir_ty/src/tests/simple.rs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/crates/ra_hir_ty/Cargo.toml b/crates/ra_hir_ty/Cargo.toml index 75f04f9dd..d430b08ca 100644 --- a/crates/ra_hir_ty/Cargo.toml +++ b/crates/ra_hir_ty/Cargo.toml | |||
@@ -18,7 +18,7 @@ rustc-hash = "1.1.0" | |||
18 | 18 | ||
19 | stdx = { path = "../stdx" } | 19 | stdx = { path = "../stdx" } |
20 | 20 | ||
21 | hir_def = { path = "../ra_hir_def", package = "ra_hir_def" } | 21 | hir_def = { path = "../hir_def" } |
22 | hir_expand = { path = "../hir_expand" } | 22 | hir_expand = { path = "../hir_expand" } |
23 | arena = { path = "../arena" } | 23 | arena = { path = "../arena" } |
24 | base_db = { path = "../base_db" } | 24 | base_db = { path = "../base_db" } |
diff --git a/crates/ra_hir_ty/src/tests/simple.rs b/crates/ra_hir_ty/src/tests/simple.rs index 5a7cf9455..59eb59d5f 100644 --- a/crates/ra_hir_ty/src/tests/simple.rs +++ b/crates/ra_hir_ty/src/tests/simple.rs | |||
@@ -1776,8 +1776,8 @@ fn main() { | |||
1776 | ); | 1776 | ); |
1777 | } | 1777 | } |
1778 | 1778 | ||
1779 | // This test is actually testing the shadowing behavior within ra_hir_def. It | 1779 | // This test is actually testing the shadowing behavior within hir_def. It |
1780 | // lives here because the testing infrastructure in ra_hir_def isn't currently | 1780 | // lives here because the testing infrastructure in hir_def isn't currently |
1781 | // capable of asserting the necessary conditions. | 1781 | // capable of asserting the necessary conditions. |
1782 | #[test] | 1782 | #[test] |
1783 | fn should_be_shadowing_imports() { | 1783 | fn should_be_shadowing_imports() { |