| 174 | } |
| 175 | |
| 176 | void on_count_changed(int new_cnt, int delta) { |
| 177 | RefAutoinc lock(handler.owner->access); |
| 178 | count = new_cnt; |
| 179 | if (event) |
| 180 | event->on_count_changed(new_cnt, delta); |
| 181 | } |
| 182 | void on_invoked(lua_State *state, int nargs, bool from_c) { |
| 183 | RefAutoinc lock(handler.owner->access); |
| 184 | if (event) |
no outgoing calls
no test coverage detected