pub struct MatchFinder<'db> { /* private fields */ }
Expand description
Searches a crate for pattern matches and possibly replaces them with something else.
Implementations§
Source§impl<'db> MatchFinder<'db>
impl<'db> MatchFinder<'db>
Sourcepub fn in_context(
db: &'db RootDatabase,
lookup_context: FilePosition,
restrict_ranges: Vec<FileRange>,
) -> Result<MatchFinder<'db>, SsrError>
pub fn in_context( db: &'db RootDatabase, lookup_context: FilePosition, restrict_ranges: Vec<FileRange>, ) -> Result<MatchFinder<'db>, SsrError>
Constructs a new instance where names will be looked up as if they appeared at
lookup_context
.
Sourcepub fn at_first_file(
db: &'db RootDatabase,
) -> Result<MatchFinder<'db>, SsrError>
pub fn at_first_file( db: &'db RootDatabase, ) -> Result<MatchFinder<'db>, SsrError>
Constructs an instance using the start of the first file in db
as the lookup context.
Sourcepub fn add_rule(&mut self, rule: SsrRule) -> Result<(), SsrError>
pub fn add_rule(&mut self, rule: SsrRule) -> Result<(), SsrError>
Adds a rule to be applied. The order in which rules are added matters. Earlier rules take precedence. If a node is matched by an earlier rule, then later rules won’t be permitted to match to it.
Sourcepub fn edits(&self) -> FxHashMap<FileId, TextEdit>
pub fn edits(&self) -> FxHashMap<FileId, TextEdit>
Finds matches for all added rules and returns edits for all found matches.
Sourcepub fn add_search_pattern(
&mut self,
pattern: SsrPattern,
) -> Result<(), SsrError>
pub fn add_search_pattern( &mut self, pattern: SsrPattern, ) -> Result<(), SsrError>
Adds a search pattern. For use if you intend to only call find_matches_in_file
. If you
intend to do replacement, use add_rule
instead.
Sourcepub fn matches(&self) -> SsrMatches
pub fn matches(&self) -> SsrMatches
Returns matches for all added rules.
Sourcepub fn debug_where_text_equal(
&self,
file_id: EditionedFileId,
snippet: &str,
) -> Vec<MatchDebugInfo>
pub fn debug_where_text_equal( &self, file_id: EditionedFileId, snippet: &str, ) -> Vec<MatchDebugInfo>
Finds all nodes in file_id
whose text is exactly equal to snippet
and attempts to match
them, while recording reasons why they don’t match. This API is useful for command
line-based debugging where providing a range is difficult.
Auto Trait Implementations§
impl<'db> !Freeze for MatchFinder<'db>
impl<'db> !RefUnwindSafe for MatchFinder<'db>
impl<'db> !Send for MatchFinder<'db>
impl<'db> !Sync for MatchFinder<'db>
impl<'db> Unpin for MatchFinder<'db>
impl<'db> !UnwindSafe for MatchFinder<'db>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Cast for T
impl<T> Cast for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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