The ~Statement destructor currently covers any state this object creates. Additionally, we actually DON'T want to revert stmt->locked or db_state ->iterators in this destructor, to ensure deterministic database access.
| 18 | // Additionally, we actually DON'T want to revert stmt->locked or db_state |
| 19 | // ->iterators in this destructor, to ensure deterministic database access. |
| 20 | StatementIterator::~StatementIterator() {} |
| 21 | |
| 22 | Napi::Value StatementIterator::Next(Napi::Env env) { |
| 23 | assert(alive == true); |
nothing calls this directly
no outgoing calls
no test coverage detected