Comments in single statement block
Brought to you by:
anthonysteele
When Option "Transform" --> "Add or Remove begin and end from single statements" sets to "Remove begin and end from around single statement" the code:
if Condition then
begin
__// Comment Line 1
__// Comment Line 2
__// Comment Line 3
__DoSomething;
end;
transfoms to:
if Condition then
__DoSomething// Comment Line 1
__// Comment Line 2
__// Comment Line 3
;
but expected:
if Condition then
__// Comment Line 1
__// Comment Line 2
__// Comment Line 3
__DoSomething;
Correct please.