(type, buf)
| 392 | } |
| 393 | |
| 394 | parseRpath (type, buf) { |
| 395 | if (buf.length < 8) |
| 396 | throw new Error('lc_rpath OOB'); |
| 397 | |
| 398 | return { |
| 399 | type: type, |
| 400 | name: this.parseLCStr(buf, 0), |
| 401 | }; |
| 402 | } |
| 403 | |
| 404 | parseLoadDylib (type, buf) { |
| 405 | if (buf.length < 16) |
no test coverage detected