Annotation.st
changeset 22030 0d0851bf7815
parent 22029 15b623368482
child 22701 8940df382f2f
--- a/Annotation.st	Mon Jul 17 12:21:10 2017 +0200
+++ b/Annotation.st	Mon Jul 17 12:21:52 2017 +0200
@@ -110,47 +110,44 @@
 
     (in Squeak/Pharo): to browse all nonprimitive methods with pragmas evaluate
         SystemBrowser default browseAllSelect: [:m| m primitive isZero and: [m pragmas notEmpty]]
-"
-!
+
+    knownPragmas
+        context flagging:
+            <context: #return>
+                tells the compiler that this context will be returned through
+                via 'thisContext sender ... sender return' from a lower context.
+                The compiler's will create a returnable context
+                (i.e. to prevent context optimizations)
 
-knownPragmas
-"
-    context flagging:
-        <context: #return>
-            tells the compiler that this context will be returned through
-            via 'thisContext sender ... sender return' from a lower context.
-            The compiler's will create a returnable context
-            (i.e. to prevent context optimizations)
-            
-    exception handling:    
-        <exception: #handle> 
-            marks contexts as exception handlers.
-            
-        <exception: #unwind>
-            marks contexts which contain unwind actions
+        exception handling:    
+            <exception: #handle> 
+                marks contexts as exception handlers.
+
+            <exception: #unwind>
+                marks contexts which contain unwind actions
+
+            <exception: #raise>
+                marks contexts which raise an exception
 
-        <exception: #raise>
-            marks contexts which raise an exception
+        misc:        
+            <resource: #skipInDebuggersWalkBack>
+                will not be shown in the debugger
 
-    misc:        
-        <resource: #skipInDebuggersWalkBack>
-            will not be shown in the debugger
+            <resource: #style (...)>
+                affected by style sheet
 
-        <resource: #style (...)>
-            affected by style sheet
+            <resource: #obsolete>
+                marks obsolete methods
 
-        <resource: #obsolete>
-            marks obsolete methods
-            
-        <modifier: #super> 
-            must be called if redefined i.e. redefiners MUST do a super-send
+            <modifier: #super> 
+                must be called if redefined i.e. redefiners MUST do a super-send
 
-        <inspector2Tab>     
-        <postLoad>
-        <swizzle: selector>
+            <inspector2Tab>     
+            <postLoad>
+            <swizzle: selector>
 
-        <category: '...'>
-            GNU-smalltalk's way of defining method categories
+            <category: '...'>
+                GNU-smalltalk's way of defining method categories
 "
 ! !