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
{{ message }}
This repository has been archived by the owner on Feb 3, 2020. It is now read-only.
Currently, the AST only supports assignment to plain identifiers. The grammar should support assignment to fields (at an arbitrary depth).
Note that this is just the grammar to support this. The actual implementation will be when #39 is completed.
foo.bar.spam.car = 4
is equivalent to((foo.bar).spam).car = 4
. (like Arbitrary Field Access #57)The text was updated successfully, but these errors were encountered: