(n)
| 151 | |
| 152 | |
| 153 | def encode_uint_var(n): |
| 154 | result = bytearray() |
| 155 | while n > 127: |
| 156 | result.append(128 | (n & 127)) |
| 157 | n >>= 7 |
| 158 | result.append(n) |
| 159 | return bytes(result) |
| 160 | |
| 161 | |
| 162 | def append_source_mapping(wasm, url): |
no test coverage detected