* Create a script. * @constructor * @param {Buffer|Array|Object} code
(options)
| 52 | */ |
| 53 | |
| 54 | constructor(options) { |
| 55 | this.raw = EMPTY_BUFFER; |
| 56 | this.code = []; |
| 57 | |
| 58 | if (options) |
| 59 | this.fromOptions(options); |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Get length. |
nothing calls this directly
no test coverage detected