pub struct SourceChangeBuilder {
    pub edit: TextEditBuilder,
    pub file_id: FileId,
    pub source_change: SourceChange,
    pub trigger_signature_help: bool,
    pub mutated_tree: Option<TreeMutator>,
    pub snippet_builder: Option<SnippetBuilder>,
}

Fields§

§edit: TextEditBuilder§file_id: FileId§source_change: SourceChange§trigger_signature_help: bool§mutated_tree: Option<TreeMutator>

Maps the original, immutable SyntaxNode to a clone_for_update twin.

§snippet_builder: Option<SnippetBuilder>

Keeps track of where to place snippets

Implementations§

source§

impl SourceChangeBuilder

source

pub fn new(file_id: FileId) -> SourceChangeBuilder

source

pub fn edit_file(&mut self, file_id: FileId)

source

pub fn make_mut<N: AstNode>(&mut self, node: N) -> N

source

pub fn make_syntax_mut(&mut self, node: SyntaxNode) -> SyntaxNode

Returns a copy of the node, suitable for mutation.

Syntax trees in rust-analyzer are typically immutable, and mutating operations panic at runtime. However, it is possible to make a copy of the tree and mutate the copy freely. Mutation is based on interior mutability, and different nodes in the same tree see the same mutations.

The typical pattern for an assist is to find specific nodes in the read phase, and then get their mutable counterparts using make_mut in the mutable state.

source

pub fn delete(&mut self, range: TextRange)

Remove specified range of text.

source

pub fn insert(&mut self, offset: TextSize, text: impl Into<String>)

Append specified text at the given offset

source

pub fn replace(&mut self, range: TextRange, replace_with: impl Into<String>)

Replaces specified range of text with a given string.

source

pub fn replace_ast<N: AstNode>(&mut self, old: N, new: N)

source

pub fn create_file(&mut self, dst: AnchoredPathBuf, content: impl Into<String>)

source

pub fn move_file(&mut self, src: FileId, dst: AnchoredPathBuf)

source

pub fn trigger_signature_help(&mut self)

source

pub fn add_tabstop_before(&mut self, _cap: SnippetCap, node: impl AstNode)

Adds a tabstop snippet to place the cursor before node

source

pub fn add_tabstop_after(&mut self, _cap: SnippetCap, node: impl AstNode)

Adds a tabstop snippet to place the cursor after node

source

pub fn add_tabstop_before_token(&mut self, _cap: SnippetCap, token: SyntaxToken)

Adds a tabstop snippet to place the cursor before token

source

pub fn add_tabstop_after_token(&mut self, _cap: SnippetCap, token: SyntaxToken)

Adds a tabstop snippet to place the cursor after token

source

pub fn add_placeholder_snippet(&mut self, _cap: SnippetCap, node: impl AstNode)

Adds a snippet to move the cursor selected over node

source

pub fn add_placeholder_snippet_group( &mut self, _cap: SnippetCap, nodes: Vec<SyntaxNode> )

Adds a snippet to move the cursor selected over nodes

This allows for renaming newly generated items without having to go through a separate rename step.

source

pub fn finish(self) -> SourceChange

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Cast for T

§

fn cast<U>(self, interner: <U as HasInterner>::Interner) -> U
where Self: CastTo<U>, U: HasInterner,

Cast a value to type U using CastTo.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> IntoBox<dyn Any> for T
where T: Any,

§

fn into_box(self) -> Box<dyn Any>

Convert self into the appropriate boxed form.
source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<'a, T> Captures<'a> for T
where T: ?Sized,