We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
foo = a: 1 b: 2 bar = foo... c: 3
results in
error: unexpected ... foo... ^^^
For now we have to use:
bar = { foo..., c: 3 }
It's a bit ugly and it adds an exception to the nice CS way of object notation.