| 71 | explicit ToLuaHandler(lua_State* aL) : L(aL) { stack_.reserve(32); } |
| 72 | |
| 73 | bool Null() { |
| 74 | push_null(L); |
| 75 | context_.submit(L); |
| 76 | return true; |
| 77 | } |
| 78 | bool Bool(bool b) { |
| 79 | lua_pushboolean(L, b); |
| 80 | context_.submit(L); |
no test coverage detected