| 19 | start(Napi::Persistent(start)) {} |
| 20 | |
| 21 | static void xStep(sqlite3_context* invocation, int argc, sqlite3_value** argv) { |
| 22 | xStepBase(invocation, argc, argv, &CustomAggregate::fn); |
| 23 | } |
| 24 | |
| 25 | static void xInverse(sqlite3_context* invocation, int argc, sqlite3_value** argv) { |
| 26 | xStepBase(invocation, argc, argv, &CustomAggregate::inverse); |
nothing calls this directly
no outgoing calls
no test coverage detected