| 896 | } |
| 897 | |
| 898 | bool Reader::decodeDouble(Token &token) |
| 899 | { |
| 900 | Value decoded; |
| 901 | if (!decodeDouble(token, decoded)) |
| 902 | return false; |
| 903 | currentValue().swapPayload(decoded); |
| 904 | currentValue().setOffsetStart(token.start_ - begin_); |
| 905 | currentValue().setOffsetLimit(token.end_ - begin_); |
| 906 | return true; |
| 907 | } |
| 908 | |
| 909 | bool Reader::decodeDouble(Token &token, Value &decoded) |
| 910 | { |
nothing calls this directly
no test coverage detected