LLVMStXMethod.st
changeset 5 3ac0c9381634
parent 4 d33c64726c86
child 12 f98e97fd02ef
--- a/LLVMStXMethod.st	Sat Jul 11 10:03:12 2015 +0100
+++ b/LLVMStXMethod.st	Sat Jul 11 16:56:36 2015 +0100
@@ -90,19 +90,19 @@
 
 !LLVMStXMethod methodsFor:'initialization'!
 
-initialize
-    super initialize.
-
+initializeArgumentsNames
     "Assign human readable names to parameters"
     (super parameterAt: 1) name: 'self'.
     (super parameterAt: 2) name: 'selector'.
     (super parameterAt: 3) name: 'searchClass'.
     (super parameterAt: 4) name: 'pIlc'.
-    1 to: self numArgs do:[:numArg | 
+    1 to: super numArgs -  4 do:[:numArg | 
+        self halt.
         (super parameterAt: 4+numArg) name: 'marg', numArg printString.
     ].
 
-    "Created: / 11-07-2015 / 09:41:13 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Created: / 11-07-2015 / 10:18:14 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 11-07-2015 / 11:21:50 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !