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 {
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 @@ -3008,7 +3008,7 @@ impl<'a> Parser<'a> {
3008
3008
3009
3009
/// Get the precedence of the next token
3010
3010
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 )
3012
3012
}
3013
3013
3014
3014
/// Return the first non-whitespace token that has not yet been processed
You can’t perform that action at this time.
0 commit comments