450d45bb
by Francis De Brabandere at 2026-05-07T15:32:25-04:00
vbscript: Support assignment to chained array index expressions.
Handle expressions like x(0)(1) = 5 where the left side of an
assignment is a call expression whose inner expression is also a call
(not a direct member). The compiler now evaluates the inner expression
as a read, then emits a new OP_assign_call opcode to assign to the
resulting array element or default dispatch property.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53877