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