File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 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 {
350350 ///
351351 /// The default implementation is used for many dialects, but can be
352352 /// 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 > {
354354 if let Some ( precedence) = self . get_next_precedence ( parser) {
355355 return precedence;
356356 }
Original file line number Diff line number Diff line change @@ -3022,7 +3022,7 @@ impl<'a> Parser<'a> {
30223022
30233023 /// Get the precedence of the next token
30243024 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 )
30263026 }
30273027
30283028 /// Return the first non-whitespace token that has not yet been processed
You can’t perform that action at this time.
0 commit comments