4a38d735
by Francis De Brabandere at 2026-06-22T20:50:36+02:00
vbscript: Parse a bare '&' followed by octal digits as an octal literal.
Native VBScript treats '&' followed by octal digits as octal even without
an explicit 'o'/'O' prefix, so &10000000 is octal (2097152). Wine only
accepted the &O form and raised a syntax error otherwise.
A decimal digit (8 or 9) terminating the octal run is an invalid octal
digit and raises a syntax error (1002), matching native (&19, &18).