We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This code:
foo { ["bar"] = 1 ["baz"] = 2 }
Is incorrectly parsed as subscript. Equivalent to:
foo { ["bar"] = 1["baz"] <ERROR unexpected '='> 2 }