Lines Matching defs:NextTok
180 std::optional<Token> NextTok =
185 if (NextTok && NextTok->is(tok::TokenKind::semi)) {
186 // Ideally this would return `F` with spelling location `;` (NextTok)
187 // following the example above. For now simply return NextTok location.
188 return NextTok->getLocation();
196 std::optional<Token> NextTok =
200 if (NextTok && NextTok->is(tok::TokenKind::semi))
201 return NextTok->getLocation();