compiler/PPCCodeGenerator.st
changeset 538 16e8536f5cfb
parent 534 a949c4fe44df
--- a/compiler/PPCCodeGenerator.st	Mon Sep 07 08:20:46 2015 +0100
+++ b/compiler/PPCCodeGenerator.st	Mon Sep 07 11:53:38 2015 +0100
@@ -356,8 +356,8 @@
 
                     parent := variableNode parent.
                     "Check for <barg> at: <number>"
-                    ((parent selector == #at:) and:[ parent options first isLiteralNumber ]) ifTrue:[ 
-                        blockMatches at: parent put: (childValueVars at: parent options first value).
+                    ((parent selector == #at:) and:[ parent arguments first isLiteralNumber ]) ifTrue:[ 
+                        blockMatches at: parent put: (childValueVars at: parent arguments first value).
                     ] ifFalse:[ 
                         "Check for <barg> first / second / ..."
                         | i |
@@ -417,7 +417,7 @@
         codeGen code: blockBody.    
     ]
 
-    "Modified: / 27-07-2015 / 15:49:15 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 07-09-2015 / 13:00:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 visitAndNode: node