| 368 | int int_value() const override { return m_value; } |
| 369 | bool equals(const JsonValue * other) const override { return m_value == other->number_value(); } |
| 370 | bool less(const JsonValue * other) const override { return m_value < other->number_value(); } |
| 371 | public: |
| 372 | explicit JsonInt(int value) : Value(value) {} |
| 373 | }; |
nothing calls this directly
no test coverage detected