2018-08-12 10:50:16 -05:00
|
|
|
use {TextUnit, File, EditBuilder, Edit};
|
|
|
|
use libsyntax2::{
|
2018-08-14 05:33:44 -05:00
|
|
|
ast::{self, AstNode},
|
2018-08-12 10:50:16 -05:00
|
|
|
SyntaxKind::COMMA,
|
|
|
|
SyntaxNodeRef,
|
2018-08-14 05:33:44 -05:00
|
|
|
SyntaxRoot,
|
2018-08-12 10:50:16 -05:00
|
|
|
algo::{
|
|
|
|
Direction, siblings,
|
2018-08-14 05:33:44 -05:00
|
|
|
find_leaf_at_offset, ancestors,
|
2018-08-12 10:50:16 -05:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2018-08-15 15:24:20 -05:00
|
|
|
pub struct ActionResult {
|
|
|
|
pub edit: Edit,
|
|
|
|
pub cursor_position: CursorPosition,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum CursorPosition {
|
|
|
|
Same,
|
|
|
|
Offset(TextUnit),
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn flip_comma<'a>(file: &'a File, offset: TextUnit) -> Option<impl FnOnce() -> ActionResult + 'a> {
|
2018-08-12 10:50:16 -05:00
|
|
|
let syntax = file.syntax();
|
|
|
|
let syntax = syntax.as_ref();
|
|
|
|
|
|
|
|
let comma = find_leaf_at_offset(syntax, offset).find(|leaf| leaf.kind() == COMMA)?;
|
|
|
|
let left = non_trivia_sibling(comma, Direction::Backward)?;
|
|
|
|
let right = non_trivia_sibling(comma, Direction::Forward)?;
|
|
|
|
Some(move || {
|
|
|
|
let mut edit = EditBuilder::new();
|
|
|
|
edit.replace(left.range(), right.text());
|
|
|
|
edit.replace(right.range(), left.text());
|
2018-08-15 15:24:20 -05:00
|
|
|
ActionResult {
|
|
|
|
edit: edit.finish(),
|
|
|
|
cursor_position: CursorPosition::Same,
|
|
|
|
}
|
2018-08-12 10:50:16 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-08-15 15:24:20 -05:00
|
|
|
pub fn add_derive<'a>(file: &'a File, offset: TextUnit) -> Option<impl FnOnce() -> ActionResult + 'a> {
|
2018-08-14 05:33:44 -05:00
|
|
|
let syntax = file.syntax();
|
|
|
|
let syntax = syntax.as_ref();
|
|
|
|
let nominal = find_node::<ast::NominalDef<_>>(syntax, offset)?;
|
|
|
|
Some(move || {
|
|
|
|
let mut edit = EditBuilder::new();
|
2018-08-15 15:24:20 -05:00
|
|
|
let node_start = nominal.syntax().range().start();
|
|
|
|
edit.insert(node_start, "#[derive()]\n".to_string());
|
|
|
|
ActionResult {
|
|
|
|
edit: edit.finish(),
|
|
|
|
cursor_position: CursorPosition::Offset(
|
|
|
|
node_start + TextUnit::of_str("#[derive(")
|
|
|
|
),
|
|
|
|
}
|
2018-08-14 05:33:44 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-08-12 10:50:16 -05:00
|
|
|
fn non_trivia_sibling(node: SyntaxNodeRef, direction: Direction) -> Option<SyntaxNodeRef> {
|
|
|
|
siblings(node, direction)
|
|
|
|
.skip(1)
|
|
|
|
.find(|node| !node.kind().is_trivia())
|
|
|
|
}
|
|
|
|
|
2018-08-14 05:33:44 -05:00
|
|
|
fn find_non_trivia_leaf(syntax: SyntaxNodeRef, offset: TextUnit) -> Option<SyntaxNodeRef> {
|
|
|
|
find_leaf_at_offset(syntax, offset)
|
|
|
|
.find(|leaf| !leaf.kind().is_trivia())
|
|
|
|
}
|
|
|
|
|
2018-08-16 04:51:40 -05:00
|
|
|
pub fn find_node<'a, N: AstNode<&'a SyntaxRoot>>(syntax: SyntaxNodeRef<'a>, offset: TextUnit) -> Option<N> {
|
2018-08-14 05:33:44 -05:00
|
|
|
let leaf = find_non_trivia_leaf(syntax, offset)?;
|
|
|
|
ancestors(leaf)
|
|
|
|
.filter_map(N::cast)
|
|
|
|
.next()
|
|
|
|
}
|
2018-08-12 10:50:16 -05:00
|
|
|
|