https://bugs.winehq.org/show_bug.cgi?id=53782
Bug ID: 53782 Summary: vbscript can not compile ReDim with list of variables Product: Wine Version: 7.16 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: vbscript Assignee: wine-bugs@winehq.org Reporter: jsm174@gmail.com Distribution: ---
While working on leveraging the vbscript engine of Wine for a macos/linux port of Visual Pinball, I've been testing several user made scripts.
I've found some scripts that have lists when using redim. The following works in real VBS, but fails here:
dim ax(), ay() redim ax(4), ay(5)
Wscript.Echo UBound(ax) Wscript.Echo UBound(ay)