(type, value)
| 22 | } |
| 23 | } |
| 24 | encode(type, value) { |
| 25 | this.argList.push({ |
| 26 | type, |
| 27 | value |
| 28 | }); |
| 29 | return this; |
| 30 | } |
| 31 | encode8BitString(str) { |
| 32 | this.encode('uint32_t', str.length); |
| 33 | this.encode('bool', true); |
no outgoing calls
no test coverage detected