| 1 | struct Addon { |
| 2 | explicit Addon(Napi::Env env) : |
| 3 | privileged_info(NULL), |
| 4 | next_id(0), |
| 5 | cs(env) {} |
| 6 | |
| 7 | static void Cleanup(Addon* addon) { |
| 8 | for (Database* db : addon->dbs) db->CloseHandles(); |
nothing calls this directly
no outgoing calls
no test coverage detected