-
afb74797
by Francis De Brabandere at 2026-04-16T19:00:03+02:00
vbscript: Return error 1028 for invalid keyword after 'Do'.
Return "Expected 'While', 'Until' or end of statement" when 'Do' is
followed by an unexpected keyword like 'For' or 'If'.
-
b19538e0
by Francis De Brabandere at 2026-04-16T19:00:05+02:00
vbscript: Return error 1047 for wrong 'End' keyword inside class.
Return "Expected 'Class'" when a class body is closed with 'End Sub',
'End Function', or other mismatched 'End' keywords instead of 'End Class'.
-
3c96d6b1
by Francis De Brabandere at 2026-04-16T19:00:07+02:00
vbscript: Return error 1051 for inconsistent property argument counts.
Return "Number of arguments must be consistent across properties
specification" when Property Get/Let/Set declarations for the same
name have incompatible argument counts. Property Let/Set must have
exactly one more argument than Property Get.