Is it possible to support this? ``` foo = {x: {y: 1}} bar = foo {x.y = 2} ``` would be equal to ``` bar = foo {x = foo.x {y = 2}} ```
Is it possible to support this?
would be equal to