Rubberduck
Rubberduck copied to clipboard
Inspection - ternary function IIF, can be made into ternary operator-ish statement
RD should identify short-circuit opportunities:
IIf condition, funcB, funcC
becomes inline If
If condition Then funcB Else funcC
or, If-block
If condition Then
funcB
Else
funcC
End If