Explorar el Código

* fixed indentation

git-svn-id: trunk@33192 -
Jonas Maebe hace 9 años
padre
commit
a0296d7311
Se han modificado 1 ficheros con 15 adiciones y 15 borrados
  1. 15 15
      compiler/pexpr.pas

+ 15 - 15
compiler/pexpr.pas

@@ -3755,21 +3755,21 @@ implementation
                     postfixoperators(p1,again,getaddr);
                   end;
                end;
-           _OBJCPROTOCOL:
-             begin
-               { The @protocol keyword is used in two ways in Objective-C:
-                   1) to declare protocols (~ Object Pascal interfaces)
-                   2) to obtain the metaclass (~ Object Pascal) "class of")
-                      of a declared protocol
-                 This code is for handling the second case. Because of 1),
-                 we cannot simply use a system unit symbol.
-               }
-               consume(_OBJCPROTOCOL);
-               consume(_LKLAMMER);
-               p1:=factor(false,[]);
-               consume(_RKLAMMER);
-               p1:=cinlinenode.create(in_objc_protocol_x,false,p1);
-             end;
+             _OBJCPROTOCOL:
+               begin
+                 { The @protocol keyword is used in two ways in Objective-C:
+                     1) to declare protocols (~ Object Pascal interfaces)
+                     2) to obtain the metaclass (~ Object Pascal) "class of")
+                        of a declared protocol
+                   This code is for handling the second case. Because of 1),
+                   we cannot simply use a system unit symbol.
+                 }
+                 consume(_OBJCPROTOCOL);
+                 consume(_LKLAMMER);
+                 p1:=factor(false,[]);
+                 consume(_RKLAMMER);
+                 p1:=cinlinenode.create(in_objc_protocol_x,false,p1);
+               end;
 
              else
                begin