You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds arrays and structs support for assigns clause
Assigns clauses should handle multiple targets.
Previously, it only supported identifiers (e.g., variable `x`)
and dereferenced pointers (e.g., *myPtr). So, we expand its support to
also handle members of a struct (e.g. `myStruct.someMember` or
`myStructPtr->otherMember`) and array ranges (e.g. `myArr[5, lastIdx]`).
Signed-off-by: Felipe R. Monteiro <[email protected]>
0 commit comments