Some methods to exercise RegisterMethod
| 747 | |
| 748 | // Some methods to exercise RegisterMethod |
| 749 | int64_t AddInt(int64_t x) const { return v_int + x; } |
| 750 | Array<int64_t> AppendInt(Array<int64_t> xs, int64_t y) const { |
| 751 | xs.push_back(y); |
| 752 | return xs; |
nothing calls this directly
no outgoing calls
no test coverage detected