| 27 | |
| 28 | // A class for holding values that are less often used. |
| 29 | class Extras { friend class Statement; friend class StatementIterator; |
| 30 | explicit Extras( |
| 31 | Napi::Env env, |
| 32 | Napi::Function row_factory, |
| 33 | Napi::Function array_Factory, |
| 34 | sqlite3_uint64 id |
| 35 | ); |
| 36 | BindMap bind_map; |
| 37 | RowBuilder row_builder; |
| 38 | const sqlite3_uint64 id; |
| 39 | }; |
| 40 | |
| 41 | NODE_METHOD(JS_new); |
| 42 | static NODE_METHOD(JS_run); |
nothing calls this directly
no outgoing calls
no test coverage detected