src/JavaByteCodeDisassembler.st
branchjk_new_structure
changeset 805 357902dfedca
parent 803 8add6c68b94a
child 837 8f42226d82c0
--- a/src/JavaByteCodeDisassembler.st	Thu May 19 08:51:37 2011 +0000
+++ b/src/JavaByteCodeDisassembler.st	Thu May 19 11:10:09 2011 +0000
@@ -291,20 +291,20 @@
 !
 
 indexedFieldStorer
-   | index |
+    | index |
 
     wide 
         ifTrue: 
             [ index := self fetchIndex2.
             wide := false. ]
-           ifFalse: [ index := self fetchIndex ].
-
-               self writeInstructionWithArgs: (self prettyPrintIndex: index)
-                stackBefore: (self prettyPrintField: index)
-                after: self whatever.
+        ifFalse: [ index := self fetchIndex ].
+    self 
+        writeInstructionWithArgs: (self prettyPrintField: index)
+        stackBefore: (self prettyPrintValue:'newVal')
+        after: self whatever.
 
     "Created: / 20-03-2011 / 20:53:41 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
-    "Modified: / 21-03-2011 / 15:26:21 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
+    "Modified: / 19-05-2011 / 13:04:05 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
 !
 
 returnIfFinished