Used to support ordered containers.
| 9 | |
| 10 | // Used to support ordered containers. |
| 11 | static inline bool Compare(Statement const * const a, Statement const * const b) { |
| 12 | return a->extras->id < b->extras->id; |
| 13 | } |
| 14 | |
| 15 | // Returns the Statement's bind map (creates it upon first execution). |
| 16 | BindMap& GetBindMap(Napi::Env env); |
nothing calls this directly
no outgoing calls
no test coverage detected