| 1023 | |
| 1024 | template <class TToken> |
| 1025 | inline bool Stop(TToken* token) noexcept { |
| 1026 | if (Count > 1) { |
| 1027 | --Count; |
| 1028 | return false; |
| 1029 | } else if (Count == 1) { |
| 1030 | token->DelimiterEnd_ = token->OriginEnd_; |
| 1031 | token->UpdateParentBuf(token->TokenStart(), token->DelimiterEnd_); |
| 1032 | return false; |
| 1033 | } |
| 1034 | return true; |
| 1035 | } |
| 1036 | |
| 1037 | size_t Count = 0; |
| 1038 | }; |
nothing calls this directly
no test coverage detected