| 195 | |
| 196 | |
| 197 | static void dumpHeader (DumpState *D) { |
| 198 | dumpLiteral(D, LUA_SIGNATURE); |
| 199 | dumpInt(D, LUAC_VERSION); |
| 200 | dumpByte(D, LUAC_FORMAT); |
| 201 | dumpLiteral(D, LUAC_DATA); |
| 202 | dumpByte(D, sizeof(Instruction)); |
| 203 | dumpByte(D, sizeof(lua_Integer)); |
| 204 | dumpByte(D, sizeof(lua_Number)); |
| 205 | dumpInteger(D, LUAC_INT); |
| 206 | dumpNumber(D, LUAC_NUM); |
| 207 | } |
| 208 | |
| 209 | |
| 210 | /* |
no test coverage detected