ABI changes: pass by value #172
Labels
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: M-Labs/nac3#172
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
For lists and objects, we will pass a pointer (current behavior, don't need to change). For tuples (and other collections such as arrays that we will add later), we should pass by value.
This is required to match the ABI used in the legacy compiler, so we can use the same RPC code.
done