mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 04:53:34 +00:00
rename Edit to TextEdit and AtomEdit to AtomTextEdit
This commit is contained in:
parent
7344d28768
commit
0527e3b283
11 changed files with 92 additions and 87 deletions
|
@ -1,7 +1,7 @@
|
|||
mod reference_completion;
|
||||
|
||||
use ra_editor::find_node_at_offset;
|
||||
use ra_text_edit::AtomEdit;
|
||||
use ra_text_edit::AtomTextEdit;
|
||||
use ra_syntax::{
|
||||
algo::visit::{visitor_ctx, VisitorCtx},
|
||||
ast,
|
||||
|
@ -34,7 +34,7 @@ pub(crate) fn completions(
|
|||
let original_file = db.source_file(position.file_id);
|
||||
// Insert a fake ident to get a valid parse tree
|
||||
let file = {
|
||||
let edit = AtomEdit::insert(position.offset, "intellijRulezz".to_string());
|
||||
let edit = AtomTextEdit::insert(position.offset, "intellijRulezz".to_string());
|
||||
original_file.reparse(&edit)
|
||||
};
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ pub mod mock_analysis;
|
|||
use std::{fmt, sync::Arc};
|
||||
|
||||
use ra_syntax::{SourceFileNode, TextRange, TextUnit};
|
||||
use ra_text_edit::AtomEdit;
|
||||
use ra_text_edit::AtomTextEdit;
|
||||
use ra_db::FileResolverImp;
|
||||
use rayon::prelude::*;
|
||||
use relative_path::RelativePathBuf;
|
||||
|
@ -121,7 +121,7 @@ pub struct SourceChange {
|
|||
#[derive(Debug)]
|
||||
pub struct SourceFileNodeEdit {
|
||||
pub file_id: FileId,
|
||||
pub edits: Vec<AtomEdit>,
|
||||
pub edits: Vec<AtomTextEdit>,
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
|
|
|
@ -8,11 +8,11 @@ use ra_syntax::{
|
|||
SyntaxNodeRef, TextRange, TextUnit,
|
||||
};
|
||||
|
||||
use crate::{find_node_at_offset, Edit, EditBuilder};
|
||||
use crate::{find_node_at_offset, TextEdit, TextEditBuilder};
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct LocalEdit {
|
||||
pub edit: Edit,
|
||||
pub edit: TextEdit,
|
||||
pub cursor_position: Option<TextUnit>,
|
||||
}
|
||||
|
||||
|
@ -26,7 +26,7 @@ pub fn flip_comma<'a>(
|
|||
let prev = non_trivia_sibling(comma, Direction::Prev)?;
|
||||
let next = non_trivia_sibling(comma, Direction::Next)?;
|
||||
Some(move || {
|
||||
let mut edit = EditBuilder::new();
|
||||
let mut edit = TextEditBuilder::new();
|
||||
edit.replace(prev.range(), next.text().to_string());
|
||||
edit.replace(next.range(), prev.text().to_string());
|
||||
LocalEdit {
|
||||
|
@ -49,7 +49,7 @@ pub fn add_derive<'a>(
|
|||
.filter(|(name, _arg)| name == "derive")
|
||||
.map(|(_name, arg)| arg)
|
||||
.next();
|
||||
let mut edit = EditBuilder::new();
|
||||
let mut edit = TextEditBuilder::new();
|
||||
let offset = match derive_attr {
|
||||
None => {
|
||||
edit.insert(node_start, "#[derive()]\n".to_string());
|
||||
|
@ -82,7 +82,7 @@ pub fn add_impl<'a>(
|
|||
|
||||
Some(move || {
|
||||
let type_params = nominal.type_param_list();
|
||||
let mut edit = EditBuilder::new();
|
||||
let mut edit = TextEditBuilder::new();
|
||||
let start_offset = nominal.syntax().range().end();
|
||||
let mut buf = String::new();
|
||||
buf.push_str("\n\nimpl");
|
||||
|
@ -129,7 +129,7 @@ pub fn introduce_variable<'a>(
|
|||
}
|
||||
return Some(move || {
|
||||
let mut buf = String::new();
|
||||
let mut edit = EditBuilder::new();
|
||||
let mut edit = TextEditBuilder::new();
|
||||
|
||||
buf.push_str("let var_name = ");
|
||||
expr.syntax().text().push_to(&mut buf);
|
||||
|
|
|
@ -15,7 +15,7 @@ pub use self::{
|
|||
symbols::{file_structure, file_symbols, FileSymbol, StructureNode},
|
||||
typing::{join_lines, on_enter, on_eq_typed},
|
||||
};
|
||||
use ra_text_edit::{Edit, EditBuilder};
|
||||
use ra_text_edit::{TextEdit, TextEditBuilder};
|
||||
use ra_syntax::{
|
||||
algo::find_leaf_at_offset,
|
||||
ast::{self, AstNode, NameOwner},
|
||||
|
|
|
@ -10,7 +10,7 @@ use ra_syntax::{
|
|||
};
|
||||
use ra_text_edit::text_utils::contains_offset_nonstrict;
|
||||
|
||||
use crate::{find_node_at_offset, EditBuilder, LocalEdit};
|
||||
use crate::{find_node_at_offset, TextEditBuilder, LocalEdit};
|
||||
|
||||
pub fn join_lines(file: &SourceFileNode, range: TextRange) -> LocalEdit {
|
||||
let range = if range.is_empty() {
|
||||
|
@ -19,7 +19,7 @@ pub fn join_lines(file: &SourceFileNode, range: TextRange) -> LocalEdit {
|
|||
let pos = match text.find('\n') {
|
||||
None => {
|
||||
return LocalEdit {
|
||||
edit: EditBuilder::new().finish(),
|
||||
edit: TextEditBuilder::new().finish(),
|
||||
cursor_position: None,
|
||||
};
|
||||
}
|
||||
|
@ -31,7 +31,7 @@ pub fn join_lines(file: &SourceFileNode, range: TextRange) -> LocalEdit {
|
|||
};
|
||||
|
||||
let node = find_covering_node(file.syntax(), range);
|
||||
let mut edit = EditBuilder::new();
|
||||
let mut edit = TextEditBuilder::new();
|
||||
for node in node.descendants() {
|
||||
let text = match node.leaf_text() {
|
||||
Some(text) => text,
|
||||
|
@ -73,7 +73,7 @@ pub fn on_enter(file: &SourceFileNode, offset: TextUnit) -> Option<LocalEdit> {
|
|||
let indent = node_indent(file, comment.syntax())?;
|
||||
let inserted = format!("\n{}{} ", indent, prefix);
|
||||
let cursor_position = offset + TextUnit::of_str(&inserted);
|
||||
let mut edit = EditBuilder::new();
|
||||
let mut edit = TextEditBuilder::new();
|
||||
edit.insert(offset, inserted);
|
||||
Some(LocalEdit {
|
||||
edit: edit.finish(),
|
||||
|
@ -123,7 +123,7 @@ pub fn on_eq_typed(file: &SourceFileNode, offset: TextUnit) -> Option<LocalEdit>
|
|||
return None;
|
||||
}
|
||||
let offset = let_stmt.syntax().range().end();
|
||||
let mut edit = EditBuilder::new();
|
||||
let mut edit = TextEditBuilder::new();
|
||||
edit.insert(offset, ";".to_string());
|
||||
Some(LocalEdit {
|
||||
edit: edit.finish(),
|
||||
|
@ -131,7 +131,12 @@ pub fn on_eq_typed(file: &SourceFileNode, offset: TextUnit) -> Option<LocalEdit>
|
|||
})
|
||||
}
|
||||
|
||||
fn remove_newline(edit: &mut EditBuilder, node: SyntaxNodeRef, node_text: &str, offset: TextUnit) {
|
||||
fn remove_newline(
|
||||
edit: &mut TextEditBuilder,
|
||||
node: SyntaxNodeRef,
|
||||
node_text: &str,
|
||||
offset: TextUnit,
|
||||
) {
|
||||
if node.kind() != WHITESPACE || node_text.bytes().filter(|&b| b == b'\n').count() != 1 {
|
||||
// The node is either the first or the last in the file
|
||||
let suff = &node_text[TextRange::from_to(
|
||||
|
@ -192,7 +197,7 @@ fn is_trailing_comma(left: SyntaxKind, right: SyntaxKind) -> bool {
|
|||
}
|
||||
}
|
||||
|
||||
fn join_single_expr_block(edit: &mut EditBuilder, node: SyntaxNodeRef) -> Option<()> {
|
||||
fn join_single_expr_block(edit: &mut TextEditBuilder, node: SyntaxNodeRef) -> Option<()> {
|
||||
let block = ast::Block::cast(node.parent()?)?;
|
||||
let block_expr = ast::BlockExpr::cast(block.syntax().parent()?)?;
|
||||
let expr = single_expr(block)?;
|
||||
|
@ -270,14 +275,14 @@ fn foo() {
|
|||
fn test_join_lines_lambda_block() {
|
||||
check_join_lines(
|
||||
r"
|
||||
pub fn reparse(&self, edit: &AtomEdit) -> File {
|
||||
pub fn reparse(&self, edit: &AtomTextEdit) -> File {
|
||||
<|>self.incremental_reparse(edit).unwrap_or_else(|| {
|
||||
self.full_reparse(edit)
|
||||
})
|
||||
}
|
||||
",
|
||||
r"
|
||||
pub fn reparse(&self, edit: &AtomEdit) -> File {
|
||||
pub fn reparse(&self, edit: &AtomTextEdit) -> File {
|
||||
<|>self.incremental_reparse(edit).unwrap_or_else(|| self.full_reparse(edit))
|
||||
}
|
||||
",
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
use languageserver_types::{
|
||||
Location, Position, Range, SymbolKind, TextDocumentEdit, TextDocumentIdentifier,
|
||||
TextDocumentItem, TextDocumentPositionParams, TextEdit, Url, VersionedTextDocumentIdentifier,
|
||||
self, Location, Position, Range, SymbolKind, TextDocumentEdit, TextDocumentIdentifier,
|
||||
TextDocumentItem, TextDocumentPositionParams, Url, VersionedTextDocumentIdentifier,
|
||||
};
|
||||
use ra_analysis::{FileId, FileSystemEdit, SourceChange, SourceFileNodeEdit, FilePosition};
|
||||
use ra_editor::{LineCol, LineIndex};
|
||||
use ra_text_edit::{AtomEdit, Edit};
|
||||
use ra_text_edit::{AtomTextEdit, TextEdit};
|
||||
use ra_syntax::{SyntaxKind, TextRange, TextUnit};
|
||||
|
||||
use crate::{req, server_world::ServerWorld, Result};
|
||||
|
@ -92,11 +92,11 @@ impl ConvWith for Range {
|
|||
}
|
||||
}
|
||||
|
||||
impl ConvWith for Edit {
|
||||
impl ConvWith for TextEdit {
|
||||
type Ctx = LineIndex;
|
||||
type Output = Vec<TextEdit>;
|
||||
type Output = Vec<languageserver_types::TextEdit>;
|
||||
|
||||
fn conv_with(self, line_index: &LineIndex) -> Vec<TextEdit> {
|
||||
fn conv_with(self, line_index: &LineIndex) -> Vec<languageserver_types::TextEdit> {
|
||||
self.into_atoms()
|
||||
.into_iter()
|
||||
.map_conv_with(line_index)
|
||||
|
@ -104,12 +104,12 @@ impl ConvWith for Edit {
|
|||
}
|
||||
}
|
||||
|
||||
impl ConvWith for AtomEdit {
|
||||
impl ConvWith for AtomTextEdit {
|
||||
type Ctx = LineIndex;
|
||||
type Output = TextEdit;
|
||||
type Output = languageserver_types::TextEdit;
|
||||
|
||||
fn conv_with(self, line_index: &LineIndex) -> TextEdit {
|
||||
TextEdit {
|
||||
fn conv_with(self, line_index: &LineIndex) -> languageserver_types::TextEdit {
|
||||
languageserver_types::TextEdit {
|
||||
range: self.delete.conv_with(line_index),
|
||||
new_text: self.insert,
|
||||
}
|
||||
|
@ -229,7 +229,7 @@ impl TryConvWith for SourceChange {
|
|||
fn translate_offset_with_edit(
|
||||
pre_edit_index: &LineIndex,
|
||||
offset: TextUnit,
|
||||
edits: &[AtomEdit],
|
||||
edits: &[AtomTextEdit],
|
||||
) -> LineCol {
|
||||
let fallback = pre_edit_index.line_col(offset);
|
||||
let edit = match edits.first() {
|
||||
|
|
|
@ -47,7 +47,7 @@ pub use crate::{
|
|||
},
|
||||
};
|
||||
|
||||
use ra_text_edit::AtomEdit;
|
||||
use ra_text_edit::AtomTextEdit;
|
||||
use crate::yellow::GreenNode;
|
||||
|
||||
/// `SourceFileNode` represents a parse tree for a single Rust file.
|
||||
|
@ -68,15 +68,15 @@ impl SourceFileNode {
|
|||
parser_impl::parse_with(yellow::GreenBuilder::new(), text, &tokens, grammar::root);
|
||||
SourceFileNode::new(green, errors)
|
||||
}
|
||||
pub fn reparse(&self, edit: &AtomEdit) -> SourceFileNode {
|
||||
pub fn reparse(&self, edit: &AtomTextEdit) -> SourceFileNode {
|
||||
self.incremental_reparse(edit)
|
||||
.unwrap_or_else(|| self.full_reparse(edit))
|
||||
}
|
||||
pub fn incremental_reparse(&self, edit: &AtomEdit) -> Option<SourceFileNode> {
|
||||
pub fn incremental_reparse(&self, edit: &AtomTextEdit) -> Option<SourceFileNode> {
|
||||
reparsing::incremental_reparse(self.syntax(), edit, self.errors())
|
||||
.map(|(green_node, errors)| SourceFileNode::new(green_node, errors))
|
||||
}
|
||||
fn full_reparse(&self, edit: &AtomEdit) -> SourceFileNode {
|
||||
fn full_reparse(&self, edit: &AtomTextEdit) -> SourceFileNode {
|
||||
let text =
|
||||
text_utils::replace_range(self.syntax().text().to_string(), edit.delete, &edit.insert);
|
||||
SourceFileNode::parse(&text)
|
||||
|
|
|
@ -6,11 +6,11 @@ use crate::parser_impl;
|
|||
use crate::text_utils::replace_range;
|
||||
use crate::yellow::{self, GreenNode, SyntaxError, SyntaxNodeRef};
|
||||
use crate::{SyntaxKind::*, TextRange, TextUnit};
|
||||
use ra_text_edit::AtomEdit;
|
||||
use ra_text_edit::AtomTextEdit;
|
||||
|
||||
pub(crate) fn incremental_reparse(
|
||||
node: SyntaxNodeRef,
|
||||
edit: &AtomEdit,
|
||||
edit: &AtomTextEdit,
|
||||
errors: Vec<SyntaxError>,
|
||||
) -> Option<(GreenNode, Vec<SyntaxError>)> {
|
||||
let (node, green, new_errors) =
|
||||
|
@ -22,7 +22,7 @@ pub(crate) fn incremental_reparse(
|
|||
|
||||
fn reparse_leaf<'node>(
|
||||
node: SyntaxNodeRef<'node>,
|
||||
edit: &AtomEdit,
|
||||
edit: &AtomTextEdit,
|
||||
) -> Option<(SyntaxNodeRef<'node>, GreenNode, Vec<SyntaxError>)> {
|
||||
let node = algo::find_covering_node(node, edit.delete);
|
||||
match node.kind() {
|
||||
|
@ -48,7 +48,7 @@ fn reparse_leaf<'node>(
|
|||
|
||||
fn reparse_block<'node>(
|
||||
node: SyntaxNodeRef<'node>,
|
||||
edit: &AtomEdit,
|
||||
edit: &AtomTextEdit,
|
||||
) -> Option<(SyntaxNodeRef<'node>, GreenNode, Vec<SyntaxError>)> {
|
||||
let (node, reparser) = find_reparsable_node(node, edit.delete)?;
|
||||
let text = get_text_after_edit(node, &edit);
|
||||
|
@ -61,7 +61,7 @@ fn reparse_block<'node>(
|
|||
Some((node, green, new_errors))
|
||||
}
|
||||
|
||||
fn get_text_after_edit(node: SyntaxNodeRef, edit: &AtomEdit) -> String {
|
||||
fn get_text_after_edit(node: SyntaxNodeRef, edit: &AtomTextEdit) -> String {
|
||||
replace_range(
|
||||
node.text().to_string(),
|
||||
edit.delete - node.range().start(),
|
||||
|
@ -139,7 +139,7 @@ fn merge_errors(
|
|||
old_errors: Vec<SyntaxError>,
|
||||
new_errors: Vec<SyntaxError>,
|
||||
old_node: SyntaxNodeRef,
|
||||
edit: &AtomEdit,
|
||||
edit: &AtomTextEdit,
|
||||
) -> Vec<SyntaxError> {
|
||||
let mut res = Vec::new();
|
||||
for e in old_errors {
|
||||
|
@ -166,7 +166,7 @@ mod tests {
|
|||
where
|
||||
for<'a> F: Fn(
|
||||
SyntaxNodeRef<'a>,
|
||||
&AtomEdit,
|
||||
&AtomTextEdit,
|
||||
) -> Option<(SyntaxNodeRef<'a>, GreenNode, Vec<SyntaxError>)>,
|
||||
{
|
||||
let (range, before) = extract_range(before);
|
||||
|
@ -175,7 +175,7 @@ mod tests {
|
|||
let fully_reparsed = SourceFileNode::parse(&after);
|
||||
let incrementally_reparsed = {
|
||||
let f = SourceFileNode::parse(&before);
|
||||
let edit = AtomEdit {
|
||||
let edit = AtomTextEdit {
|
||||
delete: range,
|
||||
insert: replace_with.to_string(),
|
||||
};
|
||||
|
|
|
@ -10,10 +10,10 @@
|
|||
);
|
||||
File::new(green, errors)
|
||||
}
|
||||
pub fn reparse(&self, edit: &AtomEdit) -> File {
|
||||
pub fn reparse(&self, edit: &AtomTextEdit) -> File {
|
||||
self.incremental_reparse(edit).unwrap_or_else(|| self.full_reparse(edit))
|
||||
}
|
||||
pub fn incremental_reparse(&self, edit: &AtomEdit) -> Option<File> {
|
||||
pub fn incremental_reparse(&self, edit: &AtomTextEdit) -> Option<File> {
|
||||
let (node, reparser) = find_reparsable_node(self.syntax(), edit.delete)?;
|
||||
let text = replace_range(
|
||||
node.text().to_string(),
|
||||
|
@ -31,7 +31,7 @@
|
|||
let errors = merge_errors(self.errors(), new_errors, node, edit);
|
||||
Some(File::new(green_root, errors))
|
||||
}
|
||||
fn full_reparse(&self, edit: &AtomEdit) -> File {
|
||||
fn full_reparse(&self, edit: &AtomTextEdit) -> File {
|
||||
let text = replace_range(self.syntax().text().to_string(), edit.delete, &edit.insert);
|
||||
File::parse(&text)
|
||||
}
|
||||
|
@ -58,22 +58,22 @@
|
|||
}
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct AtomEdit {
|
||||
pub struct AtomTextEdit {
|
||||
pub delete: TextRange,
|
||||
pub insert: String,
|
||||
}
|
||||
|
||||
impl AtomEdit {
|
||||
pub fn replace(range: TextRange, replace_with: String) -> AtomEdit {
|
||||
AtomEdit { delete: range, insert: replace_with }
|
||||
impl AtomTextEdit {
|
||||
pub fn replace(range: TextRange, replace_with: String) -> AtomTextEdit {
|
||||
AtomTextEdit { delete: range, insert: replace_with }
|
||||
}
|
||||
|
||||
pub fn delete(range: TextRange) -> AtomEdit {
|
||||
AtomEdit::replace(range, String::new())
|
||||
pub fn delete(range: TextRange) -> AtomTextEdit {
|
||||
AtomTextEdit::replace(range, String::new())
|
||||
}
|
||||
|
||||
pub fn insert(offset: TextUnit, text: String) -> AtomEdit {
|
||||
AtomEdit::replace(TextRange::offset_len(offset, 0.into()), text)
|
||||
pub fn insert(offset: TextUnit, text: String) -> AtomTextEdit {
|
||||
AtomTextEdit::replace(TextRange::offset_len(offset, 0.into()), text)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -114,17 +114,17 @@ fn is_balanced(tokens: &[Token]) -> bool {
|
|||
pub insert: String,
|
||||
}
|
||||
|
||||
impl AtomEdit {
|
||||
pub fn replace(range: TextRange, replace_with: String) -> AtomEdit {
|
||||
AtomEdit { delete: range, insert: replace_with }
|
||||
impl AtomTextEdit {
|
||||
pub fn replace(range: TextRange, replace_with: String) -> AtomTextEdit {
|
||||
AtomTextEdit { delete: range, insert: replace_with }
|
||||
}
|
||||
|
||||
pub fn delete(range: TextRange) -> AtomEdit {
|
||||
AtomEdit::replace(range, String::new())
|
||||
pub fn delete(range: TextRange) -> AtomTextEdit {
|
||||
AtomTextEdit::replace(range, String::new())
|
||||
}
|
||||
|
||||
pub fn insert(offset: TextUnit, text: String) -> AtomEdit {
|
||||
AtomEdit::replace(TextRange::offset_len(offset, 0.into()), text)
|
||||
pub fn insert(offset: TextUnit, text: String) -> AtomTextEdit {
|
||||
AtomTextEdit::replace(TextRange::offset_len(offset, 0.into()), text)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -176,7 +176,7 @@ fn merge_errors(
|
|||
old_errors: Vec<SyntaxError>,
|
||||
new_errors: Vec<SyntaxError>,
|
||||
old_node: SyntaxNodeRef,
|
||||
edit: &AtomEdit,
|
||||
edit: &AtomTextEdit,
|
||||
) -> Vec<SyntaxError> {
|
||||
let mut res = Vec::new();
|
||||
for e in old_errors {
|
||||
|
|
|
@ -1,29 +1,29 @@
|
|||
mod edit;
|
||||
mod text_edit;
|
||||
pub mod text_utils;
|
||||
|
||||
pub use crate::edit::{Edit, EditBuilder};
|
||||
pub use crate::text_edit::{TextEdit, TextEditBuilder};
|
||||
|
||||
use text_unit::{TextRange, TextUnit};
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct AtomEdit {
|
||||
pub struct AtomTextEdit {
|
||||
pub delete: TextRange,
|
||||
pub insert: String,
|
||||
}
|
||||
|
||||
impl AtomEdit {
|
||||
pub fn replace(range: TextRange, replace_with: String) -> AtomEdit {
|
||||
AtomEdit {
|
||||
impl AtomTextEdit {
|
||||
pub fn replace(range: TextRange, replace_with: String) -> AtomTextEdit {
|
||||
AtomTextEdit {
|
||||
delete: range,
|
||||
insert: replace_with,
|
||||
}
|
||||
}
|
||||
|
||||
pub fn delete(range: TextRange) -> AtomEdit {
|
||||
AtomEdit::replace(range, String::new())
|
||||
pub fn delete(range: TextRange) -> AtomTextEdit {
|
||||
AtomTextEdit::replace(range, String::new())
|
||||
}
|
||||
|
||||
pub fn insert(offset: TextUnit, text: String) -> AtomEdit {
|
||||
AtomEdit::replace(TextRange::offset_len(offset, 0.into()), text)
|
||||
pub fn insert(offset: TextUnit, text: String) -> AtomTextEdit {
|
||||
AtomTextEdit::replace(TextRange::offset_len(offset, 0.into()), text)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,37 +1,37 @@
|
|||
use crate::AtomEdit;
|
||||
use crate::AtomTextEdit;
|
||||
use crate::text_utils::contains_offset_nonstrict;
|
||||
use text_unit::{TextRange, TextUnit};
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct Edit {
|
||||
atoms: Vec<AtomEdit>,
|
||||
pub struct TextEdit {
|
||||
atoms: Vec<AtomTextEdit>,
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct EditBuilder {
|
||||
atoms: Vec<AtomEdit>,
|
||||
pub struct TextEditBuilder {
|
||||
atoms: Vec<AtomTextEdit>,
|
||||
}
|
||||
|
||||
impl EditBuilder {
|
||||
pub fn new() -> EditBuilder {
|
||||
EditBuilder { atoms: Vec::new() }
|
||||
impl TextEditBuilder {
|
||||
pub fn new() -> TextEditBuilder {
|
||||
TextEditBuilder { atoms: Vec::new() }
|
||||
}
|
||||
pub fn replace(&mut self, range: TextRange, replace_with: String) {
|
||||
self.atoms.push(AtomEdit::replace(range, replace_with))
|
||||
self.atoms.push(AtomTextEdit::replace(range, replace_with))
|
||||
}
|
||||
pub fn delete(&mut self, range: TextRange) {
|
||||
self.atoms.push(AtomEdit::delete(range))
|
||||
self.atoms.push(AtomTextEdit::delete(range))
|
||||
}
|
||||
pub fn insert(&mut self, offset: TextUnit, text: String) {
|
||||
self.atoms.push(AtomEdit::insert(offset, text))
|
||||
self.atoms.push(AtomTextEdit::insert(offset, text))
|
||||
}
|
||||
pub fn finish(self) -> Edit {
|
||||
pub fn finish(self) -> TextEdit {
|
||||
let mut atoms = self.atoms;
|
||||
atoms.sort_by_key(|a| (a.delete.start(), a.delete.end()));
|
||||
for (a1, a2) in atoms.iter().zip(atoms.iter().skip(1)) {
|
||||
assert!(a1.delete.end() <= a2.delete.start())
|
||||
}
|
||||
Edit { atoms }
|
||||
TextEdit { atoms }
|
||||
}
|
||||
pub fn invalidates_offset(&self, offset: TextUnit) -> bool {
|
||||
self.atoms
|
||||
|
@ -40,8 +40,8 @@ impl EditBuilder {
|
|||
}
|
||||
}
|
||||
|
||||
impl Edit {
|
||||
pub fn into_atoms(self) -> Vec<AtomEdit> {
|
||||
impl TextEdit {
|
||||
pub fn into_atoms(self) -> Vec<AtomTextEdit> {
|
||||
self.atoms
|
||||
}
|
||||
|
Loading…
Reference in a new issue