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 @@ -3008,7 +3008,7 @@ impl<'a> Parser<'a> {
30083008
30093009 /// Get the precedence of the next token
30103010 pub fn get_next_precedence ( & self ) -> Result < u8 , ParserError > {
3011- self . dialect . get_next_precedence_full ( self )
3011+ self . dialect . get_next_precedence_default ( self )
30123012 }
30133013
30143014 /// Return the first non-whitespace token that has not yet been processed
You can’t perform that action at this time.
0 commit comments