aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-12-27 09:35:40 +0000
committerAleksey Kladov <[email protected]>2018-12-27 09:35:40 +0000
commit4e2dffd7983b000e9c3648e68b7b3eaf2111c400 (patch)
treeb7e65e3a66e733c2d2108e4a2394f5f809831a5b /crates
parent11ae1a669c4dc9441905b6bb70cf79ead2a76f1c (diff)
expose make_pub_crate action
Diffstat (limited to 'crates')
-rw-r--r--crates/ra_analysis/src/imp.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_analysis/src/imp.rs b/crates/ra_analysis/src/imp.rs
index 69c9b104e..38a5c1a7d 100644
--- a/crates/ra_analysis/src/imp.rs
+++ b/crates/ra_analysis/src/imp.rs
@@ -429,6 +429,7 @@ impl AnalysisImpl {
429 ra_editor::flip_comma(&file, offset).map(|f| f()), 429 ra_editor::flip_comma(&file, offset).map(|f| f()),
430 ra_editor::add_derive(&file, offset).map(|f| f()), 430 ra_editor::add_derive(&file, offset).map(|f| f()),
431 ra_editor::add_impl(&file, offset).map(|f| f()), 431 ra_editor::add_impl(&file, offset).map(|f| f()),
432 ra_editor::make_pub_crate(&file, offset).map(|f| f()),
432 ra_editor::introduce_variable(&file, range).map(|f| f()), 433 ra_editor::introduce_variable(&file, range).map(|f| f()),
433 ]; 434 ];
434 actions 435 actions