| 120 | } |
| 121 | |
| 122 | UInt64 ScriptWriter::beginObjectArray(UInt32 size) { |
| 123 | start(); |
| 124 | lua_newtable(_pState); |
| 125 | _layers.push_back(-1); |
| 126 | return reference(); |
| 127 | } |
| 128 | |
| 129 | UInt64 ScriptWriter::beginMap(Exception& ex, UInt32 size, bool weakKeys) { |
| 130 | start(); |
nothing calls this directly
no outgoing calls
no test coverage detected