We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
if
elseif
This is legal syntax:
if false end
but this is not:
if false elseif true end
(missing condition in elseif). It seems like either both should be allowed or both disallowed.
missing condition in elseif