Commits
Click on a commit to change the comparison rangeImplements deref in reassignement of projections.
Implements dereferencing as LHS in reassignments for projections.
With this PR we will support:
- `(*array)[0] = 1`
- `(*tuple).0 = 1`
- `(*struct).a = 1`
This allow includes support for nested references.
Fixes #6397