(cmd, cmdsize, symoff, nsyms, stroff, strsize)
| 1 | var SymtabCommand = function SymtabCommand(cmd, cmdsize, symoff, nsyms, stroff, strsize) { |
| 2 | this.cmd = cmd || 0x00000000; |
| 3 | this.cmdsize = cmdsize || 0x00000000; |
| 4 | this.symoff = symoff || 0x00000000; |
| 5 | this.nsyms = nsyms || 0x00000000; |
| 6 | this.stroff = stroff || 0x00000000; |
| 7 | this.strsize = strsize || 0x00000000; |
| 8 | this.toString = function() { |
| 9 | return JSON.stringify(this); |
| 10 | }; |
| 11 | }; |
| 12 | |
| 13 | var DySymtabCommand = function DySymtabCommand(cmd, |
| 14 | cmdsize, |
nothing calls this directly
no outgoing calls
no test coverage detected