| 421 | } |
| 422 | |
| 423 | void TExpressionImpl::GetTokensWithSuffix(const TString& suffix, TVector<TString>& tokens) const { |
| 424 | tokens.clear(); |
| 425 | for (const auto& token : Tokens) |
| 426 | if (token.EndsWith(suffix)) { |
| 427 | tokens.push_back(token); |
| 428 | } |
| 429 | } |
| 430 | |
| 431 | void TExpressionImpl::GetTokensWithPrefix(const TString& prefix, TVector<TString>& tokens) const { |
| 432 | tokens.clear(); |
no test coverage detected