| 83 | } |
| 84 | |
| 85 | InvokeResult InvokeResult::pending(const char* description) { |
| 86 | return InvokeResult(PENDING, description); |
| 87 | } |
| 88 | |
| 89 | bool InvokeResult::isSuccess() const { |
| 90 | return (type == SUCCESS); |
nothing calls this directly
no outgoing calls
no test coverage detected