(&self, msg: impl Into<String>)
| 37 | } |
| 38 | |
| 39 | pub(super) fn err(&self, msg: impl Into<String>) -> SqlError { |
| 40 | SqlError::Parse { detail: msg.into() } |
| 41 | } |
| 42 | |
| 43 | pub(super) fn expect_kw(&mut self, kw: &str) -> Result<()> { |
| 44 | match self.peek() { |
no outgoing calls