rename get_next_precedence_full to get_next_precedence_default (#1378)

This commit is contained in:
Samuel Colvin 2024-08-14 16:47:28 +01:00 committed by GitHub
parent f2235305f4
commit fab834dca3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -3008,7 +3008,7 @@ impl<'a> Parser<'a> {
/// Get the precedence of the next token
pub fn get_next_precedence(&self) -> Result<u8, ParserError> {
self.dialect.get_next_precedence_full(self)
self.dialect.get_next_precedence_default(self)
}
/// Return the first non-whitespace token that has not yet been processed