| 918 | } |
| 919 | |
| 920 | bool Reader::decodeString(Token &token) |
| 921 | { |
| 922 | String decoded_string; |
| 923 | if (!decodeString(token, decoded_string)) |
| 924 | return false; |
| 925 | Value decoded(decoded_string); |
| 926 | currentValue().swapPayload(decoded); |
| 927 | currentValue().setOffsetStart(token.start_ - begin_); |
| 928 | currentValue().setOffsetLimit(token.end_ - begin_); |
| 929 | return true; |
| 930 | } |
| 931 | |
| 932 | bool Reader::decodeString(Token &token, String &decoded) |
| 933 | { |
nothing calls this directly
no test coverage detected