(sectname, segname, addr, size, offset, align, reloff, nreloc, flags, reserved1, reserved2, reserved3)
| 72 | }; |
| 73 | |
| 74 | var Section64 = function Section64(sectname, segname, addr, size, offset, align, reloff, nreloc, flags, reserved1, reserved2, reserved3) { |
| 75 | this.sectname = new Uint8Array(16); |
| 76 | this.segname = new Uint8Array(16); |
| 77 | this.addr = addr || 0x0000000000000000; |
| 78 | this.size = size || 0x0000000000000000; |
| 79 | this.offset = offset || 0x00000000; |
| 80 | this.align = align || 0x00000000; |
| 81 | this.reloff = reloff || 0x00000000; |
| 82 | this.nreloc = nreloc || 0x00000000; |
| 83 | this.flags = flags || 0x00000000; |
| 84 | this.reserved1 = reserved1 || 0x00000000; |
| 85 | this.reserved2 = reserved2 || 0x00000000; |
| 86 | this.reserved3 = reserved3 || 0x00000000; |
| 87 | this.toString = function() { |
| 88 | return JSON.stringify(this); |
| 89 | }; |
| 90 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected