(type, data, size, fileoff)
| 123 | LOAD_COMMAND_TYPES[LOAD_COMMAND_TYPE.LC_MAIN] = 'Main Entrypoint'; |
| 124 | |
| 125 | var LoadCommand = function LoadCommand(type, data, size, fileoff) { |
| 126 | this.cmd = type || 0; |
| 127 | this.cmdsize = size || 0; |
| 128 | this.data = data || new Uint8Array(); |
| 129 | this.fileoff = fileoff || 0; |
| 130 | }; |
| 131 | |
| 132 | |
| 133 | export { LOAD_COMMAND_TYPE, LOAD_COMMAND_TYPES, LoadCommand } |
nothing calls this directly
no outgoing calls
no test coverage detected