| 383 | void GetTokensWithSuffix(const TString& suffix, TVector<TString>& tokens) const override; |
| 384 | void GetTokensWithPrefix(const TString& prefix, TVector<TString>& tokens) const override; |
| 385 | void SetRegexMatcher(TExpressionRegexMatcher&& matcher) override { |
| 386 | Matcher = std::move(matcher); |
| 387 | } |
| 388 | |
| 389 | private: |
| 390 | TDeque<TOperator> Operations; |
no test coverage detected