| 113 | } |
| 114 | |
| 115 | UInt64 ScriptWriter::beginArray(UInt32 size) { |
| 116 | start(); |
| 117 | lua_newtable(_pState); |
| 118 | _layers.push_back(1); |
| 119 | return reference(); |
| 120 | } |
| 121 | |
| 122 | UInt64 ScriptWriter::beginObjectArray(UInt32 size) { |
| 123 | start(); |
nothing calls this directly
no outgoing calls
no test coverage detected