mindcode
mindcode copied to clipboard
Properties cannot be invoked directly on function return values
The following code doesn't compile:
getlink(index).enabled = false
It is necessary to rewrite it to
device = getlink(index)
device.enabled = false
Supporting direct property access will require updating ANTLR syntax.