mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-10-31 23:49:22 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			101 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			101 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| unit Indentation;
 | |
| 
 | |
| {$mode objfpc}{$H+}
 | |
| 
 | |
| interface
 | |
| 
 | |
| uses
 | |
|   Classes, SysUtils;
 | |
| 
 | |
| type
 | |
|   TEnums = (
 | |
|     enum1,
 | |
|     enum2,
 | |
|     enum3
 | |
|     );
 | |
| 
 | |
|   TMyRecord = record
 | |
|     i: integer;
 | |
|   end;
 | |
|   PMyRecord = ^TMyRecord;
 | |
| 
 | |
|   { TMyClass }
 | |
| 
 | |
|   TMyClass = class(TObject)
 | |
|   public
 | |
|     procedure DoSomething1(a, b, c: integer);
 | |
|     procedure Code;
 | |
|   end;
 | |
| 
 | |
| implementation
 | |
| 
 | |
| { TMyClass }
 | |
| 
 | |
| procedure TMyClass.DoSomething1(a, b, c: integer;
 | |
|   LongParameter1: TSomeLongParameter);
 | |
| var
 | |
|   i: integer;
 | |
| begin
 | |
|   if i=0 then
 | |
|   begin
 | |
|     if (i=1)
 | |
|     or (i=3) then
 | |
|       ;
 | |
|     repeat
 | |
|       if a=2 then
 | |
|         ;
 | |
|     until b=3;
 | |
|     while a=3 do
 | |
|       Code;
 | |
|     try
 | |
|       Code;
 | |
|     finally
 | |
|       Code;
 | |
|     end;
 | |
|     try
 | |
|       Code;
 | |
|     except
 | |
|       on e: exception do
 | |
|         ;
 | |
|     end;
 | |
|   end
 | |
|   else
 | |
|   begin
 | |
|     case c of
 | |
|     1:
 | |
|       Code;
 | |
|     2:
 | |
|       begin
 | |
|         code;
 | |
|       end;
 | |
|     else
 | |
|       code;
 | |
|     end;
 | |
|   end;
 | |
| end;
 | |
| 
 | |
| procedure TMyClass.Code;
 | |
| 
 | |
|   procedure SubProc;
 | |
|   begin
 | |
| 
 | |
|   end;
 | |
| 
 | |
| var
 | |
|   i: Integer;
 | |
| begin
 | |
|   writeln('TMyClass.Code ');
 | |
|   repeat
 | |
| 
 | |
|   until ;
 | |
|   for i:=1 to 3 do
 | |
|     Code;
 | |
|   for i:=1 to 3 do
 | |
|   begin
 | |
|     Code;
 | |
|   end;
 | |
| end;
 | |
| 
 | |
| end.
 | |
| 
 | 
