Decompiler.st
branchjv
changeset 3645 695fc26d7207
parent 3443 78ceb5df3dcd
child 3666 eac1334347b1
--- a/Decompiler.st	Tue Jun 09 06:38:50 2015 +0200
+++ b/Decompiler.st	Sun May 31 16:49:23 2015 +0100
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libcomp' }"
 
+"{ NameSpace: Smalltalk }"
+
 ByteCodeCompiler subclass:#Decompiler
 	instanceVariableNames:'hasLineNo bytes literals index listStream outputStream'
 	classVariableNames:''
@@ -784,6 +786,9 @@
                 storeBlockLocal       " 241 "
                 storeOuterBlockLocal  " 242 "
                 swap                  " 243 "
+                SOURCEPOS8            " 244 "
+                SOURCEPOS16           " 245 "
+                SOURCEPOS32           " 246 "
               ).
 
     lnos := #(  false          " 0  "
@@ -1030,6 +1035,9 @@
                 false           " 241 "
                 false           " 242 "
                 false           " 243 "
+                false           " 244 "
+                false           " 245 "
+                false           " 246 "
               ).
 
     extras := #(nil             " 0  "
@@ -1276,6 +1284,9 @@
                 index           " 241 "
                 levelIndex      " 242 "
                 nil             " 243 "
+                index           " 244 "
+                unsigned16      " 245 "
+                unsigned32      " 246 "
              ).
 
     sym := syms at:(aByte + 1).
@@ -1290,7 +1301,7 @@
 
     "Modified: / 02-09-1995 / 00:12:11 / claus"
     "Modified: / 25-10-2011 / 21:58:24 / cg"
-    "Modified: / 12-04-2013 / 01:31:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 31-05-2015 / 04:05:33 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !Decompiler class methodsFor:'documentation'!