(address, range)
| 1241 | } |
| 1242 | __name(unmarshalPoint, "unmarshalPoint"); |
| 1243 | function marshalRange(address, range) { |
| 1244 | marshalPoint(address, range.startPosition); |
| 1245 | address += SIZE_OF_POINT; |
| 1246 | marshalPoint(address, range.endPosition); |
| 1247 | address += SIZE_OF_POINT; |
| 1248 | C.setValue(address, range.startIndex, "i32"); |
| 1249 | address += SIZE_OF_INT; |
| 1250 | C.setValue(address, range.endIndex, "i32"); |
| 1251 | address += SIZE_OF_INT; |
| 1252 | } |
| 1253 | __name(marshalRange, "marshalRange"); |
| 1254 | function unmarshalRange(address) { |
| 1255 | const result = {}; |
no test coverage detected