| 74 | return (char *)getPayload(); |
| 75 | } |
| 76 | JsonNode *toNode() const { |
| 77 | assert(getTag() == JSON_ARRAY || getTag() == JSON_OBJECT); |
| 78 | return (JsonNode *)getPayload(); |
| 79 | } |
| 80 | }; |
| 81 | |
| 82 | struct JsonNode { |
nothing calls this directly
no test coverage detected