()
| 70 | } |
| 71 | |
| 72 | toString() { |
| 73 | if (!this.opcode) throw new TypeError('null op'); |
| 74 | if (typeof this.attribs !== 'string') throw new TypeError('attribs must be a string'); |
| 75 | const l = this.lines ? `|${numToString(this.lines)}` : ''; |
| 76 | return this.attribs + l + this.opcode + numToString(this.chars); |
| 77 | } |
| 78 | } |