| 73 | class TInt : public TNumber { |
| 74 | public: |
| 75 | explicit TInt(int64_t value) { data_ = make_object<TIntObj>(value); } |
| 76 | |
| 77 | static TInt StaticAdd(TInt lhs, TInt rhs) { return TInt(lhs->value + rhs->value); } |
| 78 |
nothing calls this directly
no outgoing calls
no test coverage detected