| 50 | } |
| 51 | |
| 52 | Statement::Extras::Extras( |
| 53 | Napi::Env env, |
| 54 | Napi::Function row_factory, |
| 55 | Napi::Function array_factory, |
| 56 | sqlite3_uint64 id |
| 57 | ) : |
| 58 | bind_map(0), |
| 59 | row_builder(env, row_factory, array_factory), |
| 60 | id(id) {} |
| 61 | |
| 62 | INIT(Statement::Init) { |
| 63 | return DefineClass(env, "Statement", { |
nothing calls this directly
no outgoing calls
no test coverage detected