(str, enc)
| 2794 | } |
| 2795 | |
| 2796 | pushString(str, enc) { |
| 2797 | return this.push(Opcode.fromString(str, enc)); |
| 2798 | } |
| 2799 | |
| 2800 | unshiftString(str, enc) { |
| 2801 | return this.unshift(Opcode.fromString(str, enc)); |
nothing calls this directly
no test coverage detected