| 2 | public: |
| 3 | |
| 4 | explicit CustomFunction( |
| 5 | Napi::Env env, |
| 6 | Database* db, |
| 7 | const char* name, |
| 8 | Napi::Function fn, |
| 9 | bool safe_ints |
| 10 | ) : |
| 11 | name(name), |
| 12 | db(db), |
| 13 | env(env), |
| 14 | fn(Napi::Persistent(fn)), |
| 15 | safe_ints(safe_ints) {} |
| 16 | |
| 17 | virtual ~CustomFunction() {} |
| 18 |
nothing calls this directly
no outgoing calls
no test coverage detected