Make ast editing more ergonomic
changelog internal
This commit is contained in:
parent
dc8e2fea98
commit
a61691026a
@ -8,7 +8,7 @@
|
|||||||
use crate::{
|
use crate::{
|
||||||
ast,
|
ast,
|
||||||
ted::{self, Position},
|
ted::{self, Position},
|
||||||
AstNode, Direction, SyntaxElement,
|
AstNode, Direction,
|
||||||
};
|
};
|
||||||
|
|
||||||
use super::NameOwner;
|
use super::NameOwner;
|
||||||
@ -21,11 +21,11 @@ impl GenericParamsOwnerEdit for ast::Fn {
|
|||||||
fn get_or_create_where_clause(&self) -> WhereClause {
|
fn get_or_create_where_clause(&self) -> WhereClause {
|
||||||
if self.where_clause().is_none() {
|
if self.where_clause().is_none() {
|
||||||
let position = if let Some(ty) = self.ret_type() {
|
let position = if let Some(ty) = self.ret_type() {
|
||||||
Position::after(ty.syntax().clone())
|
Position::after(ty.syntax())
|
||||||
} else if let Some(param_list) = self.param_list() {
|
} else if let Some(param_list) = self.param_list() {
|
||||||
Position::after(param_list.syntax().clone())
|
Position::after(param_list.syntax())
|
||||||
} else {
|
} else {
|
||||||
Position::last_child_of(self.syntax().clone())
|
Position::last_child_of(self.syntax())
|
||||||
};
|
};
|
||||||
create_where_clause(position)
|
create_where_clause(position)
|
||||||
}
|
}
|
||||||
@ -37,9 +37,9 @@ impl GenericParamsOwnerEdit for ast::Impl {
|
|||||||
fn get_or_create_where_clause(&self) -> WhereClause {
|
fn get_or_create_where_clause(&self) -> WhereClause {
|
||||||
if self.where_clause().is_none() {
|
if self.where_clause().is_none() {
|
||||||
let position = if let Some(items) = self.assoc_item_list() {
|
let position = if let Some(items) = self.assoc_item_list() {
|
||||||
Position::before(items.syntax().clone())
|
Position::before(items.syntax())
|
||||||
} else {
|
} else {
|
||||||
Position::last_child_of(self.syntax().clone())
|
Position::last_child_of(self.syntax())
|
||||||
};
|
};
|
||||||
create_where_clause(position)
|
create_where_clause(position)
|
||||||
}
|
}
|
||||||
@ -51,9 +51,9 @@ impl GenericParamsOwnerEdit for ast::Trait {
|
|||||||
fn get_or_create_where_clause(&self) -> WhereClause {
|
fn get_or_create_where_clause(&self) -> WhereClause {
|
||||||
if self.where_clause().is_none() {
|
if self.where_clause().is_none() {
|
||||||
let position = if let Some(items) = self.assoc_item_list() {
|
let position = if let Some(items) = self.assoc_item_list() {
|
||||||
Position::before(items.syntax().clone())
|
Position::before(items.syntax())
|
||||||
} else {
|
} else {
|
||||||
Position::last_child_of(self.syntax().clone())
|
Position::last_child_of(self.syntax())
|
||||||
};
|
};
|
||||||
create_where_clause(position)
|
create_where_clause(position)
|
||||||
}
|
}
|
||||||
@ -69,13 +69,13 @@ fn get_or_create_where_clause(&self) -> WhereClause {
|
|||||||
ast::FieldList::TupleFieldList(it) => Some(it),
|
ast::FieldList::TupleFieldList(it) => Some(it),
|
||||||
});
|
});
|
||||||
let position = if let Some(tfl) = tfl {
|
let position = if let Some(tfl) = tfl {
|
||||||
Position::after(tfl.syntax().clone())
|
Position::after(tfl.syntax())
|
||||||
} else if let Some(gpl) = self.generic_param_list() {
|
} else if let Some(gpl) = self.generic_param_list() {
|
||||||
Position::after(gpl.syntax().clone())
|
Position::after(gpl.syntax())
|
||||||
} else if let Some(name) = self.name() {
|
} else if let Some(name) = self.name() {
|
||||||
Position::after(name.syntax().clone())
|
Position::after(name.syntax())
|
||||||
} else {
|
} else {
|
||||||
Position::last_child_of(self.syntax().clone())
|
Position::last_child_of(self.syntax())
|
||||||
};
|
};
|
||||||
create_where_clause(position)
|
create_where_clause(position)
|
||||||
}
|
}
|
||||||
@ -87,11 +87,11 @@ impl GenericParamsOwnerEdit for ast::Enum {
|
|||||||
fn get_or_create_where_clause(&self) -> WhereClause {
|
fn get_or_create_where_clause(&self) -> WhereClause {
|
||||||
if self.where_clause().is_none() {
|
if self.where_clause().is_none() {
|
||||||
let position = if let Some(gpl) = self.generic_param_list() {
|
let position = if let Some(gpl) = self.generic_param_list() {
|
||||||
Position::after(gpl.syntax().clone())
|
Position::after(gpl.syntax())
|
||||||
} else if let Some(name) = self.name() {
|
} else if let Some(name) = self.name() {
|
||||||
Position::after(name.syntax().clone())
|
Position::after(name.syntax())
|
||||||
} else {
|
} else {
|
||||||
Position::last_child_of(self.syntax().clone())
|
Position::last_child_of(self.syntax())
|
||||||
};
|
};
|
||||||
create_where_clause(position)
|
create_where_clause(position)
|
||||||
}
|
}
|
||||||
@ -100,19 +100,18 @@ fn get_or_create_where_clause(&self) -> WhereClause {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn create_where_clause(position: Position) {
|
fn create_where_clause(position: Position) {
|
||||||
let where_clause: SyntaxElement =
|
let where_clause = make::where_clause(empty()).clone_for_update();
|
||||||
make::where_clause(empty()).clone_for_update().syntax().clone().into();
|
ted::insert(position, where_clause.syntax());
|
||||||
ted::insert(position, where_clause);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl ast::WhereClause {
|
impl ast::WhereClause {
|
||||||
pub fn add_predicate(&self, predicate: ast::WherePred) {
|
pub fn add_predicate(&self, predicate: ast::WherePred) {
|
||||||
if let Some(pred) = self.predicates().last() {
|
if let Some(pred) = self.predicates().last() {
|
||||||
if !pred.syntax().siblings_with_tokens(Direction::Next).any(|it| it.kind() == T![,]) {
|
if !pred.syntax().siblings_with_tokens(Direction::Next).any(|it| it.kind() == T![,]) {
|
||||||
ted::append_child_raw(self.syntax().clone(), make::token(T![,]));
|
ted::append_child_raw(self.syntax(), make::token(T![,]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ted::append_child(self.syntax().clone(), predicate.syntax().clone())
|
ted::append_child(self.syntax(), predicate.syntax())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -123,7 +122,7 @@ pub fn remove(&self) {
|
|||||||
{
|
{
|
||||||
ted::remove_all(colon..=self.syntax().clone().into())
|
ted::remove_all(colon..=self.syntax().clone().into())
|
||||||
} else {
|
} else {
|
||||||
ted::remove(self.syntax().clone())
|
ted::remove(self.syntax())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,6 +8,33 @@
|
|||||||
|
|
||||||
use crate::{ast::make, SyntaxElement, SyntaxKind, SyntaxNode, SyntaxToken};
|
use crate::{ast::make, SyntaxElement, SyntaxKind, SyntaxNode, SyntaxToken};
|
||||||
|
|
||||||
|
/// Utility trait to allow calling `ted` functions with references or owned
|
||||||
|
/// nodes. Do not use outside of this module.
|
||||||
|
pub trait Element {
|
||||||
|
fn syntax_element(self) -> SyntaxElement;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<E: Element + Clone> Element for &'_ E {
|
||||||
|
fn syntax_element(self) -> SyntaxElement {
|
||||||
|
self.clone().syntax_element()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
impl Element for SyntaxElement {
|
||||||
|
fn syntax_element(self) -> SyntaxElement {
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
||||||
|
impl Element for SyntaxNode {
|
||||||
|
fn syntax_element(self) -> SyntaxElement {
|
||||||
|
self.into()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
impl Element for SyntaxToken {
|
||||||
|
fn syntax_element(self) -> SyntaxElement {
|
||||||
|
self.into()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Position {
|
pub struct Position {
|
||||||
repr: PositionRepr,
|
repr: PositionRepr,
|
||||||
@ -20,24 +47,24 @@ enum PositionRepr {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl Position {
|
impl Position {
|
||||||
pub fn after(elem: impl Into<SyntaxElement>) -> Position {
|
pub fn after(elem: impl Element) -> Position {
|
||||||
let repr = PositionRepr::After(elem.into());
|
let repr = PositionRepr::After(elem.syntax_element());
|
||||||
Position { repr }
|
Position { repr }
|
||||||
}
|
}
|
||||||
pub fn before(elem: impl Into<SyntaxElement>) -> Position {
|
pub fn before(elem: impl Element) -> Position {
|
||||||
let elem = elem.into();
|
let elem = elem.syntax_element();
|
||||||
let repr = match elem.prev_sibling_or_token() {
|
let repr = match elem.prev_sibling_or_token() {
|
||||||
Some(it) => PositionRepr::After(it),
|
Some(it) => PositionRepr::After(it),
|
||||||
None => PositionRepr::FirstChild(elem.parent().unwrap()),
|
None => PositionRepr::FirstChild(elem.parent().unwrap()),
|
||||||
};
|
};
|
||||||
Position { repr }
|
Position { repr }
|
||||||
}
|
}
|
||||||
pub fn first_child_of(node: impl Into<SyntaxNode>) -> Position {
|
pub fn first_child_of(node: &(impl Into<SyntaxNode> + Clone)) -> Position {
|
||||||
let repr = PositionRepr::FirstChild(node.into());
|
let repr = PositionRepr::FirstChild(node.clone().into());
|
||||||
Position { repr }
|
Position { repr }
|
||||||
}
|
}
|
||||||
pub fn last_child_of(node: impl Into<SyntaxNode>) -> Position {
|
pub fn last_child_of(node: &(impl Into<SyntaxNode> + Clone)) -> Position {
|
||||||
let node = node.into();
|
let node = node.clone().into();
|
||||||
let repr = match node.last_child_or_token() {
|
let repr = match node.last_child_or_token() {
|
||||||
Some(it) => PositionRepr::After(it),
|
Some(it) => PositionRepr::After(it),
|
||||||
None => PositionRepr::FirstChild(node),
|
None => PositionRepr::FirstChild(node),
|
||||||
@ -46,11 +73,11 @@ pub fn last_child_of(node: impl Into<SyntaxNode>) -> Position {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn insert(position: Position, elem: impl Into<SyntaxElement>) {
|
pub fn insert(position: Position, elem: impl Element) {
|
||||||
insert_all(position, vec![elem.into()])
|
insert_all(position, vec![elem.syntax_element()])
|
||||||
}
|
}
|
||||||
pub fn insert_raw(position: Position, elem: impl Into<SyntaxElement>) {
|
pub fn insert_raw(position: Position, elem: impl Element) {
|
||||||
insert_all_raw(position, vec![elem.into()])
|
insert_all_raw(position, vec![elem.syntax_element()])
|
||||||
}
|
}
|
||||||
pub fn insert_all(position: Position, mut elements: Vec<SyntaxElement>) {
|
pub fn insert_all(position: Position, mut elements: Vec<SyntaxElement>) {
|
||||||
if let Some(first) = elements.first() {
|
if let Some(first) = elements.first() {
|
||||||
@ -73,17 +100,17 @@ pub fn insert_all_raw(position: Position, elements: Vec<SyntaxElement>) {
|
|||||||
parent.splice_children(index..index, elements);
|
parent.splice_children(index..index, elements);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn remove(elem: impl Into<SyntaxElement>) {
|
pub fn remove(elem: impl Element) {
|
||||||
let elem = elem.into();
|
let elem = elem.syntax_element();
|
||||||
remove_all(elem.clone()..=elem)
|
remove_all(elem.clone()..=elem)
|
||||||
}
|
}
|
||||||
pub fn remove_all(range: RangeInclusive<SyntaxElement>) {
|
pub fn remove_all(range: RangeInclusive<SyntaxElement>) {
|
||||||
replace_all(range, Vec::new())
|
replace_all(range, Vec::new())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn replace(old: impl Into<SyntaxElement>, new: impl Into<SyntaxElement>) {
|
pub fn replace(old: impl Element, new: impl Element) {
|
||||||
let old = old.into();
|
let old = old.syntax_element();
|
||||||
replace_all(old.clone()..=old, vec![new.into()])
|
replace_all(old.clone()..=old, vec![new.syntax_element()])
|
||||||
}
|
}
|
||||||
pub fn replace_all(range: RangeInclusive<SyntaxElement>, new: Vec<SyntaxElement>) {
|
pub fn replace_all(range: RangeInclusive<SyntaxElement>, new: Vec<SyntaxElement>) {
|
||||||
let start = range.start().index();
|
let start = range.start().index();
|
||||||
@ -92,11 +119,11 @@ pub fn replace_all(range: RangeInclusive<SyntaxElement>, new: Vec<SyntaxElement>
|
|||||||
parent.splice_children(start..end + 1, new)
|
parent.splice_children(start..end + 1, new)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn append_child(node: impl Into<SyntaxNode>, child: impl Into<SyntaxElement>) {
|
pub fn append_child(node: &(impl Into<SyntaxNode> + Clone), child: impl Element) {
|
||||||
let position = Position::last_child_of(node);
|
let position = Position::last_child_of(node);
|
||||||
insert(position, child)
|
insert(position, child)
|
||||||
}
|
}
|
||||||
pub fn append_child_raw(node: impl Into<SyntaxNode>, child: impl Into<SyntaxElement>) {
|
pub fn append_child_raw(node: &(impl Into<SyntaxNode> + Clone), child: impl Element) {
|
||||||
let position = Position::last_child_of(node);
|
let position = Position::last_child_of(node);
|
||||||
insert_raw(position, child)
|
insert_raw(position, child)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user