7730: Fix #7712 retain visibility extracting mod to file r=lnicola a=mattyhall



Co-authored-by: Matt Hall <matthew@quickbeam.me.uk>
This commit is contained in:
bors[bot] 2021-02-20 17:12:41 +00:00 committed by GitHub
commit 364d572de8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,6 @@
use ast::edit::IndentLevel;
use ast::{edit::IndentLevel, VisibilityOwner};
use ide_db::base_db::AnchoredPathBuf;
use stdx::format_to;
use syntax::{
ast::{self, edit::AstNodeEdit, NameOwner},
AstNode, TextRange,
@ -59,7 +60,13 @@ pub(crate) fn move_module_to_file(acc: &mut Assists, ctx: &AssistContext) -> Opt
items
};
builder.replace(module_ast.syntax().text_range(), format!("mod {};", module_name));
let mut buf = String::new();
if let Some(v) = module_ast.visibility() {
format_to!(buf, "{} ", v);
}
format_to!(buf, "mod {};", module_name);
builder.replace(module_ast.syntax().text_range(), buf);
let dst = AnchoredPathBuf { anchor: ctx.frange.file_id, path };
builder.create_file(dst, contents);
@ -137,6 +144,42 @@ fn f() {}
);
}
#[test]
fn extract_public() {
check_assist(
move_module_to_file,
r#"
pub mod $0tests {
#[test] fn t() {}
}
"#,
r#"
//- /main.rs
pub mod tests;
//- /tests.rs
#[test] fn t() {}
"#,
);
}
#[test]
fn extract_public_crate() {
check_assist(
move_module_to_file,
r#"
pub(crate) mod $0tests {
#[test] fn t() {}
}
"#,
r#"
//- /main.rs
pub(crate) mod tests;
//- /tests.rs
#[test] fn t() {}
"#,
);
}
#[test]
fn available_before_curly() {
mark::check!(available_before_curly);