File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -350,7 +350,7 @@ pub trait Dialect: Debug + Any {
350
350
///
351
351
/// The default implementation is used for many dialects, but can be
352
352
/// overridden to provide dialect-specific behavior.
353
- fn get_next_precedence_full ( & self , parser : & Parser ) -> Result < u8 , ParserError > {
353
+ fn get_next_precedence_default ( & self , parser : & Parser ) -> Result < u8 , ParserError > {
354
354
if let Some ( precedence) = self . get_next_precedence ( parser) {
355
355
return precedence;
356
356
}
Original file line number Diff line number Diff line change @@ -3022,7 +3022,7 @@ impl<'a> Parser<'a> {
3022
3022
3023
3023
/// Get the precedence of the next token
3024
3024
pub fn get_next_precedence ( & self ) -> Result < u8 , ParserError > {
3025
- self . dialect . get_next_precedence_full ( self )
3025
+ self . dialect . get_next_precedence_default ( self )
3026
3026
}
3027
3027
3028
3028
/// Return the first non-whitespace token that has not yet been processed
You can’t perform that action at this time.
0 commit comments