(str, enc)
| 2798 | } |
| 2799 | |
| 2800 | unshiftString(str, enc) { |
| 2801 | return this.unshift(Opcode.fromString(str, enc)); |
| 2802 | } |
| 2803 | |
| 2804 | insertString(index, str, enc) { |
| 2805 | return this.insert(index, Opcode.fromString(str, enc)); |
nothing calls this directly
no test coverage detected