Merge #278
278: Add make_pub_crate code action to ra_editor r=matklad a=h-michael implement #170 Co-authored-by: Hirokazu Hata <h.hata.ai.t@gmail.com>
This commit is contained in:
commit
abe09eb5ed
@ -4,7 +4,7 @@
|
|||||||
algo::{find_covering_node, find_leaf_at_offset},
|
algo::{find_covering_node, find_leaf_at_offset},
|
||||||
ast::{self, AstNode, AttrsOwner, NameOwner, TypeParamsOwner},
|
ast::{self, AstNode, AttrsOwner, NameOwner, TypeParamsOwner},
|
||||||
Direction, SourceFileNode,
|
Direction, SourceFileNode,
|
||||||
SyntaxKind::{COMMA, WHITESPACE, COMMENT},
|
SyntaxKind::{COMMA, WHITESPACE, COMMENT, VISIBILITY, FN_KW, MOD_KW, STRUCT_KW, ENUM_KW, TRAIT_KW, FN_DEF, MODULE, STRUCT_DEF, ENUM_DEF, TRAIT_DEF},
|
||||||
SyntaxNodeRef, TextRange, TextUnit,
|
SyntaxNodeRef, TextRange, TextUnit,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -174,6 +174,39 @@ fn anchor_stmt(expr: ast::Expr) -> Option<SyntaxNodeRef> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn make_pub_crate<'a>(
|
||||||
|
file: &'a SourceFileNode,
|
||||||
|
offset: TextUnit,
|
||||||
|
) -> Option<impl FnOnce() -> LocalEdit + 'a> {
|
||||||
|
let syntax = file.syntax();
|
||||||
|
|
||||||
|
let keyword = find_leaf_at_offset(syntax, offset).find(|leaf| match leaf.kind() {
|
||||||
|
FN_KW | MOD_KW | STRUCT_KW | ENUM_KW | TRAIT_KW => true,
|
||||||
|
_ => false,
|
||||||
|
})?;
|
||||||
|
let parent = keyword.parent()?;
|
||||||
|
let def_kws = vec![FN_DEF, MODULE, STRUCT_DEF, ENUM_DEF, TRAIT_DEF];
|
||||||
|
let node_start = parent.range().start();
|
||||||
|
Some(move || {
|
||||||
|
let mut edit = TextEditBuilder::new();
|
||||||
|
|
||||||
|
if !def_kws.iter().any(|&def_kw| def_kw == parent.kind())
|
||||||
|
|| parent.children().any(|child| child.kind() == VISIBILITY)
|
||||||
|
{
|
||||||
|
return LocalEdit {
|
||||||
|
edit: edit.finish(),
|
||||||
|
cursor_position: Some(offset),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
edit.insert(node_start, "pub(crate) ".to_string());
|
||||||
|
LocalEdit {
|
||||||
|
edit: edit.finish(),
|
||||||
|
cursor_position: Some(node_start),
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
fn non_trivia_sibling(node: SyntaxNodeRef, direction: Direction) -> Option<SyntaxNodeRef> {
|
fn non_trivia_sibling(node: SyntaxNodeRef, direction: Direction) -> Option<SyntaxNodeRef> {
|
||||||
node.siblings(direction)
|
node.siblings(direction)
|
||||||
.skip(1)
|
.skip(1)
|
||||||
@ -333,4 +366,43 @@ fn foo() {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_make_pub_crate() {
|
||||||
|
check_action(
|
||||||
|
"<|>fn foo() {}",
|
||||||
|
"<|>pub(crate) fn foo() {}",
|
||||||
|
|file, off| make_pub_crate(file, off).map(|f| f()),
|
||||||
|
);
|
||||||
|
check_action(
|
||||||
|
"f<|>n foo() {}",
|
||||||
|
"<|>pub(crate) fn foo() {}",
|
||||||
|
|file, off| make_pub_crate(file, off).map(|f| f()),
|
||||||
|
);
|
||||||
|
check_action(
|
||||||
|
"<|>struct Foo {}",
|
||||||
|
"<|>pub(crate) struct Foo {}",
|
||||||
|
|file, off| make_pub_crate(file, off).map(|f| f()),
|
||||||
|
);
|
||||||
|
check_action("<|>mod foo {}", "<|>pub(crate) mod foo {}", |file, off| {
|
||||||
|
make_pub_crate(file, off).map(|f| f())
|
||||||
|
});
|
||||||
|
check_action(
|
||||||
|
"<|>trait Foo {}",
|
||||||
|
"<|>pub(crate) trait Foo {}",
|
||||||
|
|file, off| make_pub_crate(file, off).map(|f| f()),
|
||||||
|
);
|
||||||
|
check_action("m<|>od {}", "<|>pub(crate) mod {}", |file, off| {
|
||||||
|
make_pub_crate(file, off).map(|f| f())
|
||||||
|
});
|
||||||
|
check_action(
|
||||||
|
"pub(crate) f<|>n foo() {}",
|
||||||
|
"pub(crate) f<|>n foo() {}",
|
||||||
|
|file, off| make_pub_crate(file, off).map(|f| f()),
|
||||||
|
);
|
||||||
|
check_action(
|
||||||
|
"unsafe f<|>n foo() {}",
|
||||||
|
"<|>pub(crate) unsafe fn foo() {}",
|
||||||
|
|file, off| make_pub_crate(file, off).map(|f| f()),
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
mod typing;
|
mod typing;
|
||||||
|
|
||||||
pub use self::{
|
pub use self::{
|
||||||
code_actions::{add_derive, add_impl, flip_comma, introduce_variable, LocalEdit},
|
code_actions::{add_derive, add_impl, flip_comma, introduce_variable, make_pub_crate, LocalEdit},
|
||||||
extend_selection::extend_selection,
|
extend_selection::extend_selection,
|
||||||
folding_ranges::{folding_ranges, Fold, FoldKind},
|
folding_ranges::{folding_ranges, Fold, FoldKind},
|
||||||
line_index::{LineCol, LineIndex},
|
line_index::{LineCol, LineIndex},
|
||||||
|
Loading…
Reference in New Issue
Block a user