(cmd, cmdsize, dataoff, datasize)
| 1 | var LinkeditDataCommand = function LinkeditDataCommand(cmd, cmdsize, dataoff, datasize) { |
| 2 | this.cmd = cmd || 0x00000000; |
| 3 | this.cmdsize = cmdsize || 0x00000000; |
| 4 | this.dataoff = dataoff || 0x00000000; |
| 5 | this.datasize = datasize || 0x00000000; |
| 6 | this.toString = function() { |
| 7 | return JSON.stringify(this); |
| 8 | }; |
| 9 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected