(cond bool)
| 78 | } |
| 79 | |
| 80 | func (s *scanner) assert(cond bool) { s.l.assert(cond) } |
| 81 | func (s *scanner) syntaxError(message string) { s.scanError(message, s.t) } |
| 82 | func (s *scanner) errorExpected(t rune) { s.syntaxError(s.tokenToString(t) + " expected") } |
| 83 | func (s *scanner) numberError() { s.scanError("malformed number", tkNumber) } |
no outgoing calls
no test coverage detected