SonarDelphi icon indicating copy to clipboard operation
SonarDelphi copied to clipboard

Improve support for $if statements

Open joachimmarder opened this issue 4 years ago • 0 comments

Currently all code in an $if statement is being removed. Propsed chnage: Inlcude code in $if but remove code in $else part, that would make code like this work:

const 
  cLength =
{$if CompilerVersion >= 22}
   500;	
{$else}
   250;
{$ifend}

joachimmarder avatar May 24 '21 13:05 joachimmarder