16 Nov
2022
16 Nov
'22
11:51 a.m.
This merge request allows for statements on the same line as ELSE: ``` Dim vrOption vrOption = 3 If vrOption = 1 Then Wscript.Echo "vroption is 1" ElseIf vrOption = 2 Then Wscript.Echo "vroption is 2" Else If vrOption = 3 Then Wscript.Echo "vroption is 3" End If End If ``` Fixes https://bugs.winehq.org/show_bug.cgi?id=53873 Combined effort from myself and Nikolay Sivov -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1385