* Push a value equals rapidjson.null on to the stack. */
| 373 | * Push a value equals rapidjson.null on to the stack. |
| 374 | */ |
| 375 | int push_null(lua_State* L) |
| 376 | { |
| 377 | lua_pushlightuserdata(L, &values::null); |
| 378 | return 1; |
| 379 | } |
| 380 | } |
| 381 | |
| 382 | static const luaL_Reg methods[] = { |
no test coverage detected