Fatal parse error with units marked as experimental
Be able to supress warnings
Use actions
[W521] False positive when result is set in a "while true" loop
function ScanToken: string;
begin
while true do
begin
Result := 'Hallo';
break;
end;
end;
Add an option to "ignore comments" to rule c101
Position off screen
Installed trial on 10 Seattle in a VMWare Windows 10 environment using 2 monitors. When launching FixInsight from the IDE, the form is show on main form window, centered left/right, but top is positioned about negative 50%, so I can only see the bottom. If I shrink the width of the form enough, it drops the form fully on screen, where I can resize. But if I relaunch it again, it goes off screen again. The dialog after trying to run a couple times to restart IDE also is partially off screen from the top.
I did order the full version and hope this isn't an issue still
FI:W801 comment does not turn off warning
I have put the // FI:W801 comment after the function declaration to turn off a false positive for the W801 warning like this:
function TRd2EaIMU.SplitIMULine(_Line: string; _HeaderList: TStringList; _DataList: TStringList): Boolean; // FI:W801
I still get the warning.
It's a little issue in messages window. It should be not W801, but O801. This comment will work if you write "FI:O801"
I've uploaded a new build with fixed Messages output
[W521] False positive when result is set in finally
function TForm1.FalsePositive: integer;
begin
try
finally
Result := 0;
end;
end;Customer support service by UserEcho