| 264 | Token getNext(); |
| 265 | |
| 266 | void printError(SMLoc Loc, SourceMgr::DiagKind Kind, const Twine &Message, |
| 267 | ArrayRef<SMRange> Ranges = None) { |
| 268 | SM.PrintMessage(Loc, Kind, Message, Ranges, /* FixIts= */ None, ShowColors); |
| 269 | } |
| 270 | |
| 271 | void setError(const Twine &Message, StringRef::iterator Position) { |
| 272 | if (Position >= End) |
nothing calls this directly
no test coverage detected