(value)
| 146 | state.position += 1; |
| 147 | } |
| 148 | writeU16(value) { |
| 149 | const state = this.state; |
| 150 | if (state.result) { |
| 151 | state.result[state.position] = value >> 8; |
| 152 | state.result[state.position + 1] = value; |
| 153 | } |
| 154 | state.position += 2; |
| 155 | } |
| 156 | writeU32(value) { |
| 157 | const state = this.state; |
| 158 | if (state.result) { |
no outgoing calls
no test coverage detected