(address)
| 1252 | } |
| 1253 | __name(marshalRange, "marshalRange"); |
| 1254 | function unmarshalRange(address) { |
| 1255 | const result = {}; |
| 1256 | result.startPosition = unmarshalPoint(address); |
| 1257 | address += SIZE_OF_POINT; |
| 1258 | result.endPosition = unmarshalPoint(address); |
| 1259 | address += SIZE_OF_POINT; |
| 1260 | result.startIndex = C.getValue(address, "i32") >>> 0; |
| 1261 | address += SIZE_OF_INT; |
| 1262 | result.endIndex = C.getValue(address, "i32") >>> 0; |
| 1263 | return result; |
| 1264 | } |
| 1265 | __name(unmarshalRange, "unmarshalRange"); |
| 1266 | function marshalEdit(edit, address = TRANSFER_BUFFER) { |
| 1267 | marshalPoint(address, edit.startPosition); |
no test coverage detected