| 198 | } |
| 199 | |
| 200 | void TToken::Reset() { |
| 201 | Type_ = ETokenType::EndOfStream; |
| 202 | Int64Value = 0; |
| 203 | Uint64Value = 0; |
| 204 | DoubleValue = 0.0; |
| 205 | StringValue = TStringBuf(); |
| 206 | BooleanValue = false; |
| 207 | } |
| 208 | |
| 209 | TString ToString(const TToken& token) { |
| 210 | switch (token.GetType()) { |
no outgoing calls
no test coverage detected