chore: remove "pub" keyword from functions which do not need export

pull/12055/head
Nikita Revenco 3 weeks ago
parent f16aa7b18d
commit dfd1252f5f

@ -339,12 +339,12 @@ pub fn get_surround_pos_tag(
/// JSX tags may have `.` in them for scoping /// JSX tags may have `.` in them for scoping
/// HTML tags may have `-` in them if it's a custom element /// HTML tags may have `-` in them if it's a custom element
/// Both JSX and HTML tags may have `_` /// Both JSX and HTML tags may have `_`
pub fn is_valid_tagname_char(ch: char) -> bool { fn is_valid_tagname_char(ch: char) -> bool {
ch.is_alphanumeric() || ch == '_' || ch == '-' || ch == '.' ch.is_alphanumeric() || ch == '_' || ch == '-' || ch == '.'
} }
/// Get the two sorted `Range`s corresponding to nth matching tags surrounding the cursor, as well as the name of the tags. /// Get the two sorted `Range`s corresponding to nth matching tags surrounding the cursor, as well as the name of the tags.
pub fn find_nth_nearest_tag( fn find_nth_nearest_tag(
forward_text: RopeSlice, forward_text: RopeSlice,
cursor_pos: usize, cursor_pos: usize,
skip: usize, skip: usize,
@ -425,7 +425,7 @@ pub fn find_nth_nearest_tag(
/// Returns the Range of the tag's name (excluding the `<` and `>` characters.) /// Returns the Range of the tag's name (excluding the `<` and `>` characters.)
/// As well as the actual name of the tag /// As well as the actual name of the tag
/// Additionally, it returns the last position where it stopped searching. /// Additionally, it returns the last position where it stopped searching.
pub fn find_prev_tag( fn find_prev_tag(
text: RopeSlice, text: RopeSlice,
mut cursor_pos: usize, mut cursor_pos: usize,
skip: usize, skip: usize,
@ -470,7 +470,7 @@ pub fn find_prev_tag(
/// Find the closing `</tag>` starting from `pos` and iterating the end of the text. /// Find the closing `</tag>` starting from `pos` and iterating the end of the text.
/// Returns the Range of the tag's name (excluding the `</` and `>` characters.) /// Returns the Range of the tag's name (excluding the `</` and `>` characters.)
/// As well as the actual name of the tag and where it last stopped searching. /// As well as the actual name of the tag and where it last stopped searching.
pub fn find_next_tag( fn find_next_tag(
text: RopeSlice, text: RopeSlice,
mut cursor_pos: usize, mut cursor_pos: usize,
skip: usize, skip: usize,

Loading…
Cancel
Save