4

Is there any directive to prevent fragment of code from being changed?

For example:

procedure Test;
{CODE_FORMATTER OFF}
const  a1 = 'a';  a2 = 'b';  a3 = 'c';    
                  b2 = 'd';  b3 = 'e';

{CODE_FORMATTER ON}
begin
end;    
   
lcdk
  • 59
  • 2

1 Answers1

3

Is there any directive to prevent fragment of code from being changed?

No there is not.

David Heffernan
  • 601,492
  • 42
  • 1,072
  • 1,490