(edit, address = TRANSFER_BUFFER)
| 1264 | } |
| 1265 | __name(unmarshalRange, "unmarshalRange"); |
| 1266 | function marshalEdit(edit, address = TRANSFER_BUFFER) { |
| 1267 | marshalPoint(address, edit.startPosition); |
| 1268 | address += SIZE_OF_POINT; |
| 1269 | marshalPoint(address, edit.oldEndPosition); |
| 1270 | address += SIZE_OF_POINT; |
| 1271 | marshalPoint(address, edit.newEndPosition); |
| 1272 | address += SIZE_OF_POINT; |
| 1273 | C.setValue(address, edit.startIndex, "i32"); |
| 1274 | address += SIZE_OF_INT; |
| 1275 | C.setValue(address, edit.oldEndIndex, "i32"); |
| 1276 | address += SIZE_OF_INT; |
| 1277 | C.setValue(address, edit.newEndIndex, "i32"); |
| 1278 | address += SIZE_OF_INT; |
| 1279 | } |
| 1280 | __name(marshalEdit, "marshalEdit"); |
| 1281 | function unmarshalLanguageMetadata(address) { |
| 1282 | const major_version = C.getValue(address, "i32"); |
no test coverage detected