File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
crates/ra_syntax/src/parsing Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ pub fn tokenize(text: &str) -> (Vec<Token>, Vec<SyntaxError>) {
64
64
///
65
65
/// Beware that unescape errors are not checked at tokenization time.
66
66
pub fn lex_single_syntax_kind ( text : & str ) -> Option < ( SyntaxKind , Option < SyntaxError > ) > {
67
- first_token ( text)
67
+ lex_first_token ( text)
68
68
. filter ( |( token, _) | token. len . to_usize ( ) == text. len ( ) )
69
69
. map ( |( token, error) | ( token. kind , error) )
70
70
}
@@ -74,7 +74,7 @@ pub fn lex_single_syntax_kind(text: &str) -> Option<(SyntaxKind, Option<SyntaxEr
74
74
///
75
75
/// Beware that unescape errors are not checked at tokenization time.
76
76
pub fn lex_single_valid_syntax_kind ( text : & str ) -> Option < SyntaxKind > {
77
- first_token ( text)
77
+ lex_first_token ( text)
78
78
. filter ( |( token, error) | !error. is_some ( ) && token. len . to_usize ( ) == text. len ( ) )
79
79
. map ( |( token, _error) | token. kind )
80
80
}
@@ -87,7 +87,7 @@ pub fn lex_single_valid_syntax_kind(text: &str) -> Option<SyntaxKind> {
87
87
/// The token is malformed if the returned error is not `None`.
88
88
///
89
89
/// Beware that unescape errors are not checked at tokenization time.
90
- fn first_token ( text : & str ) -> Option < ( Token , Option < SyntaxError > ) > {
90
+ fn lex_first_token ( text : & str ) -> Option < ( Token , Option < SyntaxError > ) > {
91
91
// non-empty string is a precondtion of `rustc_lexer::first_token()`.
92
92
if text. is_empty ( ) {
93
93
return None ;
You can’t perform that action at this time.
0 commit comments