The 'nativeContext' argument removed from all native methods. refactoring-vmdata
authorJan Vrany <jan.vrany@fit.cvut.cz>
Wed, 30 Jan 2013 14:47:53 +0000
branchrefactoring-vmdata
changeset 2010 9bacff8c53de
parent 2009 d904ed10c6b7
child 2011 d23c9902d6a6
The 'nativeContext' argument removed from all native methods.
JavaNativeMethod.st
JavaNativeMethodImpl_OpenJDK6.st
JavaVM.st
--- a/JavaNativeMethod.st	Wed Jan 30 14:24:21 2013 +0000
+++ b/JavaNativeMethod.st	Wed Jan 30 14:47:53 2013 +0000
@@ -182,18 +182,16 @@
 
     header := String streamContents:[:s|
         sel numArgs == 2 ifTrue:[
-            s nextPutAll: sel; space; nextPutAll: 'this _context: '.
+            s nextPutAll: sel; space; nextPutAll: 'this  '.
         ] ifFalse:[
             | kw |
 
-            kw := sel keywords.
-            self assert: kw last = '_context:'.
+            kw := sel keywords.            
             s nextPutAll: kw first.
             s nextPutAll: ' this '.
             2 to: kw size - 1 do:[:i|
                 sel nextPutAll: (kw at: i); space; nextPut:$a; nextPutAll: i printString; space.
-            ].
-            s nextPutAll: '_context:'.
+            ].            
         ]
     ].
 
@@ -219,18 +217,16 @@
 
    header := String streamContents:[:s|
         sel numArgs == 2 ifTrue:[
-            s nextPutAll: sel keywords first; space; nextPutAll: 'this _context: '.
+            s nextPutAll: sel keywords first.
         ] ifFalse:[
             | kw |
 
-            kw := sel keywords.
-            self assert: kw last = '_context:'.
+            kw := sel keywords.            
             s nextPutAll: kw first.
             s nextPutAll: ' this '.
             2 to: kw size - 1 do:[:i|
                 s nextPutAll: (kw at: i); space; nextPut:$a; nextPutAll: (i - 1) printString; space.
-            ].
-            s nextPutAll: '_context:'.
+            ].            
         ]
     ].
 
@@ -306,19 +302,19 @@
     nm := selector upTo: $(.
 
     args := #(
-        "0"  '_context:'
-        "1"  '_:_context:'
-        "2"  '_:_:_context:'
-        "3"  '_:_:_:_context:'
-        "4"  '_:_:_:_:_context:'
-        "5"  '_:_:_:_:_:_context:'
-        "6"  '_:_:_:_:_:_:_context:'
-        "7"  '_:_:_:_:_:_:_:_:context:'
-        "8"  '_:_:_:_:_:_:_:_:_context:'
-        "9"  '_:_:_:_:_:_:_:_:_:_context:'
-        "10" '_:_:_:_:_:_:_:_:_:_:_context:'
-        "11" '_:_:_:_:_:_:_:_:_:_:_:_context:'
-        "12" '_:_:_:_:_:_:_:_:_:_:_:_:_context:'
+        "0"  ''
+        "1"  '_:'
+        "2"  '_:_:'
+        "3"  '_:_:_:'
+        "4"  '_:_:_:_:'
+        "5"  '_:_:_:_:_:'
+        "6"  '_:_:_:_:_:_:'
+        "7"  '_:_:_:_:_:_:_:'
+        "8"  '_:_:_:_:_:_:_:_:'
+        "9"  '_:_:_:_:_:_:_:_:_:'
+        "10" '_:_:_:_:_:_:_:_:_:_:'
+        "11" '_:_:_:_:_:_:_:_:_:_:_:'
+        "12" '_:_:_:_:_:_:_:_:_:_:_:_:'
     ) at: numArgs + 1.
 
     newStyleSel := ('_' , ((javaClass name copyReplaceAll:$/ with:$_) replaceAll:$$ with:$_), '_' , nm , ':' , args) asSymbol.    
@@ -358,10 +354,10 @@
     
     | sel  mthd  sender nArgs receiverAndArgsAndContext |
     nCalls := (nCalls ? 0) + 1.
-    receiverAndArgsAndContext := Array new: (nArgs := context numArgs) + 1"receiver"+1"context".
+    receiverAndArgsAndContext := Array new: (nArgs := context numArgs) + 1"receiver".
     receiverAndArgsAndContext replaceFrom:2 to:1 + nArgs with: context startingAt: context arg1Index.
     receiverAndArgsAndContext at: 1 put: context receiver.
-    receiverAndArgsAndContext at: nArgs + 2 put: context.
+    
 
 
     (mthd := nativeImplementation) isNil ifTrue: [
--- a/JavaNativeMethodImpl_OpenJDK6.st	Wed Jan 30 14:24:21 2013 +0000
+++ b/JavaNativeMethodImpl_OpenJDK6.st	Wed Jan 30 14:47:53 2013 +0000
@@ -6750,7 +6750,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - com.sun.management'!
 
-_com_sun_management_UnixOperatingSystem_initialize: this _context: nativeContext
+_com_sun_management_UnixOperatingSystem_initialize: this 
 
     <javanative: 'com/sun/management/UnixOperatingSystem' name: 'initialize()V'>
 
@@ -6762,7 +6762,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - java.awt'!
 
-_java_awt_AWTEvent_initIDs: this _context: nativeContext
+_java_awt_AWTEvent_initIDs: this 
 
     <javanative: 'java/awt/AWTEvent' name: 'initIDs()V'>
 
@@ -6771,14 +6771,14 @@
     "Modified: / 12-08-2011 / 19:08:25 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_awt_Button_initIDs: this _context: nativeContext
+_java_awt_Button_initIDs: this 
 
     <javanative: 'java/awt/Button' name: 'initIDs()V'>
 
     "Modified: / 09-02-2012 / 22:54:34 / mh <hlopik@gmail.com>"
 !
 
-_java_awt_Color_initIDs: this _context: nativeContext
+_java_awt_Color_initIDs: this 
 
     <javanative: 'java/awt/Color' name: 'initIDs()V'>
 
@@ -6787,7 +6787,7 @@
     "Created: / 28.1.1998 / 22:19:23 / cg"
 !
 
-_java_awt_Component_initIDs: this _context: nativeContext
+_java_awt_Component_initIDs: this 
 
     <javanative: 'java/awt/Component' name: 'initIDs()V'>
 
@@ -6796,7 +6796,7 @@
     "Created: / 27.1.1998 / 19:53:29 / cg"
 !
 
-_java_awt_Container_initIDs: this _context: nativeContext
+_java_awt_Container_initIDs: this 
 
     <javanative: 'java/awt/Container' name: 'initIDs()V'>
 
@@ -6805,21 +6805,21 @@
     "Modified: / 12-08-2011 / 19:09:05 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_awt_Cursor_initIDs: this _context: nativeContext
+_java_awt_Cursor_initIDs: this 
 
     <javanative: 'java/awt/Cursor' name: 'initIDs()V'>
 
     "Modified: / 09-02-2012 / 22:54:49 / mh <hlopik@gmail.com>"
 !
 
-_java_awt_Dialog_initIDs: this _context: nativeContext
+_java_awt_Dialog_initIDs: this 
 
     <javanative: 'java/awt/Dialog' name: 'initIDs()V'>
 
     "Modified: / 09-02-2012 / 22:54:09 / mh <hlopik@gmail.com>"
 !
 
-_java_awt_Dimension_initIDs: this _context: nativeContext
+_java_awt_Dimension_initIDs: this 
 
     <javanative: 'java/awt/Dimension' name: 'initIDs()V'>
 
@@ -6828,56 +6828,56 @@
     "Modified: / 12-08-2011 / 19:08:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_awt_Event_initIDs: this _context: nativeContext
+_java_awt_Event_initIDs: this 
 
     <javanative: 'java/awt/Event' name: 'initIDs()V'>
 
     "Modified: / 09-02-2012 / 22:53:11 / mh <hlopik@gmail.com>"
 !
 
-_java_awt_FontMetrics_initIDs: this _context: nativeContext
+_java_awt_FontMetrics_initIDs: this 
 
     <javanative: 'java/awt/FontMetrics' name: 'initIDs()V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_java_awt_Frame_initIDs: this _context: nativeContext
+_java_awt_Frame_initIDs: this 
 
     <javanative: 'java/awt/Frame' name: 'initIDs()V'>
 
     "Modified: / 09-02-2012 / 22:53:52 / mh <hlopik@gmail.com>"
 !
 
-_java_awt_Insets_initIDs: this _context: nativeContext
+_java_awt_Insets_initIDs: this 
 
     <javanative: 'java/awt/Insets' name: 'initIDs()V'>
 
     "Modified: / 09-02-2012 / 22:54:54 / mh <hlopik@gmail.com>"
 !
 
-_java_awt_KeyboardFocusManager_initIDs: this _context: nativeContext
+_java_awt_KeyboardFocusManager_initIDs: this 
 
     <javanative: 'java/awt/KeyboardFocusManager' name: 'initIDs()V'>
 
     "Modified: / 09-02-2012 / 22:55:04 / mh <hlopik@gmail.com>"
 !
 
-_java_awt_MenuComponent_initIDs: this _context: nativeContext
+_java_awt_MenuComponent_initIDs: this 
 
     <javanative: 'java/awt/MenuComponent' name: 'initIDs()V'>
 
     "Modified: / 09-02-2012 / 22:53:22 / mh <hlopik@gmail.com>"
 !
 
-_java_awt_MenuItem_initIDs: this _context: nativeContext
+_java_awt_MenuItem_initIDs: this 
 
     <javanative: 'java/awt/MenuItem' name: 'initIDs()V'>
 
     "Modified: / 09-02-2012 / 22:54:40 / mh <hlopik@gmail.com>"
 !
 
-_java_awt_Rectangle_initIDs: this _context: nativeContext
+_java_awt_Rectangle_initIDs: this 
 
     <javanative: 'java/awt/Rectangle' name: 'initIDs()V'>
 
@@ -6886,7 +6886,7 @@
     "Modified: / 27-10-2011 / 15:07:26 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_awt_Toolkit_initIDs: this _context: nativeContext
+_java_awt_Toolkit_initIDs: this 
 
     <javanative: 'java/awt/Toolkit' name: 'initIDs()V'>
 
@@ -6895,7 +6895,7 @@
     "Created: / 27.1.1998 / 19:53:50 / cg"
 !
 
-_java_awt_Window_initIDs: this _context: nativeContext
+_java_awt_Window_initIDs: this 
 
     <javanative: 'java/awt/Window' name: 'initIDs()V'>
 
@@ -6904,21 +6904,21 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - java.awt.event'!
 
-_java_awt_event_InputEvent_initIDs: this _context: nativeContext
+_java_awt_event_InputEvent_initIDs: this 
 
     <javanative: 'java/awt/event/InputEvent' name: 'initIDs()V'>
 
     "Modified: / 09-02-2012 / 22:53:27 / mh <hlopik@gmail.com>"
 !
 
-_java_awt_event_KeyEvent_initIDs: this _context: nativeContext
+_java_awt_event_KeyEvent_initIDs: this 
 
     <javanative: 'java/awt/event/KeyEvent' name: 'initIDs()V'>
 
     "Modified: / 09-02-2012 / 22:53:33 / mh <hlopik@gmail.com>"
 !
 
-_java_awt_event_MouseEvent_initIDs: this _context: nativeContext
+_java_awt_event_MouseEvent_initIDs: this 
 
     <javanative: 'java/awt/event/MouseEvent' name: 'initIDs()V'>
 
@@ -6927,7 +6927,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - java.io'!
 
-_java_io_FileDescriptor_initIDs: this _context: nativeContext
+_java_io_FileDescriptor_initIDs: this 
 
     <javanative: 'java/io/FileDescriptor' name: 'initIDs()V'>
 
@@ -6936,7 +6936,7 @@
     "Created: / 27.1.1998 / 18:16:29 / cg"
 !
 
-_java_io_FileDescriptor_set: this _:a1 _context: nativeContext
+_java_io_FileDescriptor_set: this _:a1 
 
     <javanative: 'java/io/FileDescriptor' name: 'set(I)J'>
 
@@ -6948,7 +6948,7 @@
     "Modified: / 18-08-2011 / 19:54:36 / jv"
 !
 
-_java_io_FileDescriptor_sync: this _context: nativeContext
+_java_io_FileDescriptor_sync: this 
 
     <javanative: 'java/io/FileDescriptor' name: 'sync()V'>
     "
@@ -6991,7 +6991,7 @@
     "Modified (format): / 10-08-2011 / 19:04:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_FileInputStream_available: this _context: nativeContext
+_java_io_FileInputStream_available: this 
 
     <javanative: 'java/io/FileInputStream' name: 'available()I'>
 
@@ -7017,7 +7017,7 @@
     "Modified: / 28-07-2012 / 02:45:38 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_FileInputStream_close0: this _context: nativeContext
+_java_io_FileInputStream_close0: this 
 
     <javanative: 'java/io/FileInputStream' name: 'close0()V'>
 
@@ -7026,7 +7026,7 @@
     "Modified: / 30-01-2013 / 14:13:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_FileInputStream_initIDs: this _context: nativeContext
+_java_io_FileInputStream_initIDs: this 
 
     <javanative: 'java/io/FileInputStream' name: 'initIDs()V'>
 
@@ -7035,7 +7035,7 @@
     "Created: / 27.1.1998 / 18:15:51 / cg"
 !
 
-_java_io_FileInputStream_open: this _:a1 _context: nativeContext
+_java_io_FileInputStream_open: this _:a1 
 
     <javanative: 'java/io/FileInputStream' name: 'open(Ljava/lang/String;)V'>
 
@@ -7088,7 +7088,7 @@
     "Modified: / 24-07-2012 / 02:17:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_FileInputStream_read: this _context: nativeContext
+_java_io_FileInputStream_read: this 
 
     <javanative: 'java/io/FileInputStream' name: 'read()I'>
 
@@ -7122,7 +7122,7 @@
     "Modified (format): / 12-12-2012 / 23:53:28 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_FileInputStream_readBytes: this _:a1 _: a2 _: a3 _context: nativeContext
+_java_io_FileInputStream_readBytes: this _:a1 _: a2 _: a3 
 
     <javanative: 'java/io/FileInputStream' name: 'readBytes([BII)I'>
 
@@ -7132,7 +7132,7 @@
     "Modified: / 30-01-2013 / 14:13:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_FileInputStream_skip: this _:a1 _: a2 _context: nativeContext
+_java_io_FileInputStream_skip: this _:a1 _: a2 
 
     <javanative: 'java/io/FileInputStream' name: 'skip(J)J'>
 
@@ -7159,7 +7159,7 @@
     "Modified: / 27.1.1999 / 20:36:11 / cg"
 !
 
-_java_io_FileOutputStream_close0: this _context: nativeContext
+_java_io_FileOutputStream_close0: this 
 
     <javanative: 'java/io/FileOutputStream' name: 'close0()V'>
 
@@ -7168,7 +7168,7 @@
     "Modified: / 30-01-2013 / 14:13:38 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_FileOutputStream_initIDs: this _context: nativeContext
+_java_io_FileOutputStream_initIDs: this 
 
     <javanative: 'java/io/FileOutputStream' name: 'initIDs()V'>
 
@@ -7177,7 +7177,7 @@
     "Created: / 27.1.1998 / 18:16:40 / cg"
 !
 
-_java_io_FileOutputStream_open: this _:a1 _context: nativeContext
+_java_io_FileOutputStream_open: this _:a1 
 
     <javanative: 'java/io/FileOutputStream' name: 'open(Ljava/lang/String;)V'>
 
@@ -7187,7 +7187,7 @@
     "Modified: / 30-01-2013 / 14:13:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_FileOutputStream_openAppend: this _:a1 _context: nativeContext
+_java_io_FileOutputStream_openAppend: this _:a1 
 
     <javanative: 'java/io/FileOutputStream' name: 'openAppend(Ljava/lang/String;)V'>
 
@@ -7197,7 +7197,7 @@
     "Modified: / 30-01-2013 / 14:13:47 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_FileOutputStream_write: this _:a1 _context: nativeContext
+_java_io_FileOutputStream_write: this _:a1 
 
     <javanative: 'java/io/FileOutputStream' name: 'write(I)V'>
     "
@@ -7227,7 +7227,7 @@
     "Modified: / 15-12-2012 / 16:31:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_FileOutputStream_writeBytes: this _:a1 _: a2 _: a3 _context: nativeContext
+_java_io_FileOutputStream_writeBytes: this _:a1 _: a2 _: a3 
 
     <javanative: 'java/io/FileOutputStream' name: 'writeBytes([BII)V'>
 
@@ -7237,7 +7237,7 @@
     "Modified: / 30-01-2013 / 14:13:51 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_FileSystem_getFileSystem: this _context: nativeContext
+_java_io_FileSystem_getFileSystem: this 
     <javanative: 'java/io/FileSystem' name: 'getFileSystem()Ljava/io/FileSystem;'>
     OperatingSystem isUNIXlike ifTrue: [
         ^ (JavaVM classForName:'java.io.UnixFileSystem') new
@@ -7251,7 +7251,7 @@
     "Modified: / 01-04-2011 / 18:09:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_ObjectInputStream_latestUserDefinedLoader: this _context: nativeContext
+_java_io_ObjectInputStream_latestUserDefinedLoader: this 
 
     <javanative: 'java/io/ObjectInputStream' name: 'latestUserDefinedLoader()Ljava/lang/ClassLoader;'>
 
@@ -7288,7 +7288,7 @@
     "Modified: / 30-01-2013 / 14:13:17 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_ObjectStreamClass_hasStaticInitializer: this _:a1 _context: nativeContext
+_java_io_ObjectStreamClass_hasStaticInitializer: this _:a1 
 
     <javanative: 'java/io/ObjectStreamClass' name: 'hasStaticInitializer(Ljava/lang/Class;)Z'>
 
@@ -7299,7 +7299,7 @@
     "Modified: / 10-08-2011 / 01:13:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_ObjectStreamClass_initNative: this _context: nativeContext
+_java_io_ObjectStreamClass_initNative: this 
 
     <javanative: 'java/io/ObjectStreamClass' name: 'initNative()V'>
 
@@ -7314,7 +7314,7 @@
     "Created: / 20-12-2010 / 17:43:55 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_RandomAccessFile_close0: this _context: nativeContext
+_java_io_RandomAccessFile_close0: this 
 
     <javanative: 'java/io/RandomAccessFile' name: 'close0()V'>
 
@@ -7323,7 +7323,7 @@
     "Modified: / 30-01-2013 / 14:17:00 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_RandomAccessFile_getFilePointer: this _context: nativeContext
+_java_io_RandomAccessFile_getFilePointer: this 
     "
     /**
      * Returns the current offset in this file.
@@ -7347,7 +7347,7 @@
     "Modified: / 06-07-2012 / 12:40:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_RandomAccessFile_initIDs: this _context: nativeContext
+_java_io_RandomAccessFile_initIDs: this 
 
     <javanative: 'java/io/RandomAccessFile' name: 'initIDs()V'>
 
@@ -7356,7 +7356,7 @@
     "Modified: / 10-08-2011 / 21:49:17 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_RandomAccessFile_length: this _context: nativeContext
+_java_io_RandomAccessFile_length: this 
 
     <javanative: 'java/io/RandomAccessFile' name: 'length()J'>
 
@@ -7374,7 +7374,7 @@
     "Created: / 4.2.1998 / 13:27:58 / cg"
 !
 
-_java_io_RandomAccessFile_open: this _:a1 _: a2 _context: nativeContext
+_java_io_RandomAccessFile_open: this _:a1 _: a2 
 
     <javanative: 'java/io/RandomAccessFile' name: 'open(Ljava/lang/String;I)V'>
 
@@ -7464,7 +7464,7 @@
     "Modified: / 23-07-2012 / 19:37:26 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_RandomAccessFile_read: this _context: nativeContext
+_java_io_RandomAccessFile_read: this 
 
     <javanative: 'java/io/RandomAccessFile' name: 'read()I'>
 
@@ -7486,7 +7486,7 @@
     "Created: / 27.1.1999 / 19:01:15 / cg"
 !
 
-_java_io_RandomAccessFile_readBytes: this _:a1 _: a2 _: a3 _context: nativeContext
+_java_io_RandomAccessFile_readBytes: this _:a1 _: a2 _: a3 
 
     <javanative: 'java/io/RandomAccessFile' name: 'readBytes([BII)I'>
 
@@ -7496,7 +7496,7 @@
     "Modified: / 30-01-2013 / 14:14:06 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_RandomAccessFile_seek: this _:a1 _: a2 _context: nativeContext
+_java_io_RandomAccessFile_seek: this _:a1 _: a2 
 
     <javanative: 'java/io/RandomAccessFile' name: 'seek(J)V'>
 
@@ -7515,7 +7515,7 @@
     "Modified (comment): / 06-07-2012 / 12:39:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_RandomAccessFile_writeBytes: this _:a1 _: a2 _: a3 _context: nativeContext
+_java_io_RandomAccessFile_writeBytes: this _:a1 _: a2 _: a3 
 
     <javanative: 'java/io/RandomAccessFile' name: 'writeBytes([BII)V'>
 
@@ -7525,7 +7525,7 @@
     "Modified: / 30-01-2013 / 14:14:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_UnixFileSystem_canonicalize0: this _:a1 _context: nativeContext
+_java_io_UnixFileSystem_canonicalize0: this _:a1 
 
     <javanative: 'java/io/UnixFileSystem' name: 'canonicalize0(Ljava/lang/String;)Ljava/lang/String;'>
 
@@ -7537,7 +7537,7 @@
     "Created: / 10-12-2010 / 14:40:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_UnixFileSystem_checkAccess: this _:a1 _: a2 _context: nativeContext
+_java_io_UnixFileSystem_checkAccess: this _:a1 _: a2 
 
     <javanative: 'java/io/UnixFileSystem' name: 'checkAccess(Ljava/io/File;I)Z'>
 
@@ -7563,7 +7563,7 @@
     "Modified: / 09-08-2011 / 17:09:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_UnixFileSystem_createDirectory: this _:a1 _context: nativeContext
+_java_io_UnixFileSystem_createDirectory: this _:a1 
 
     <javanative: 'java/io/UnixFileSystem' name: 'createDirectory(Ljava/io/File;)Z'>
 
@@ -7584,7 +7584,7 @@
     "Modified: / 05-12-2011 / 23:04:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_UnixFileSystem_createFileExclusively: this _:a1 _: a2 _context: nativeContext
+_java_io_UnixFileSystem_createFileExclusively: this _:a1 _: a2 
 
     <javanative: 'java/io/UnixFileSystem' name: 'createFileExclusively(Ljava/lang/String;Z)Z'>
 
@@ -7604,7 +7604,7 @@
     "Modified: / 10-08-2011 / 13:42:38 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_UnixFileSystem_delete0: this _:a1 _context: nativeContext
+_java_io_UnixFileSystem_delete0: this _:a1 
 
     <javanative: 'java/io/UnixFileSystem' name: 'delete0(Ljava/io/File;)Z'>
     "
@@ -7628,7 +7628,7 @@
     "Modified: / 09-08-2011 / 17:09:05 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_UnixFileSystem_getBooleanAttributes0: this _:a1 _context: nativeContext
+_java_io_UnixFileSystem_getBooleanAttributes0: this _:a1 
     <javanative: 'java/io/UnixFileSystem' name: 'getBooleanAttributes0(Ljava/io/File;)I'>
     | file  path  retval  fileSystemClass |
     retval := 0.
@@ -7655,7 +7655,7 @@
     "Modified: / 03-11-2011 / 11:03:21 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
 !
 
-_java_io_UnixFileSystem_getLastModifiedTime: this _:a1 _context: nativeContext
+_java_io_UnixFileSystem_getLastModifiedTime: this _:a1 
 
     <javanative: 'java/io/UnixFileSystem' name: 'getLastModifiedTime(Ljava/io/File;)J'>
 
@@ -7674,7 +7674,7 @@
     "Modified: / 06-07-2012 / 08:57:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_UnixFileSystem_getLength: this _:a1 _context: nativeContext
+_java_io_UnixFileSystem_getLength: this _:a1 
 
     <javanative: 'java/io/UnixFileSystem' name: 'getLength(Ljava/io/File;)J'>
 
@@ -7687,7 +7687,7 @@
     "Modified: / 09-08-2011 / 15:38:30 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_UnixFileSystem_initIDs: this _context: nativeContext
+_java_io_UnixFileSystem_initIDs: this 
 
     <javanative: 'java/io/UnixFileSystem' name: 'initIDs()V'>
 
@@ -7698,7 +7698,7 @@
     "Modified: / 10-12-2010 / 20:58:11 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_UnixFileSystem_list: this _:a1 _context: nativeContext
+_java_io_UnixFileSystem_list: this _:a1 
 
     <javanative: 'java/io/UnixFileSystem' name: #'list(Ljava/io/File;)[Ljava/lang/String;'>
     "
@@ -7741,7 +7741,7 @@
     "Modified: / 23-07-2012 / 21:57:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_UnixFileSystem_rename0: this _:a1 _: a2 _context: nativeContext
+_java_io_UnixFileSystem_rename0: this _:a1 _: a2 
 
     <javanative: 'java/io/UnixFileSystem' name: 'rename0(Ljava/io/File;Ljava/io/File;)Z'>
 
@@ -7760,7 +7760,7 @@
     "Modified: / 09-12-2011 / 20:01:14 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_UnixFileSystem_setLastModifiedTime: this _:a1 _: a2 _: a3 _context: nativeContext
+_java_io_UnixFileSystem_setLastModifiedTime: this _:a1 _: a2 _: a3 
 
     <javanative: 'java/io/UnixFileSystem' name: 'setLastModifiedTime(Ljava/io/File;J)Z'>
 
@@ -7774,7 +7774,7 @@
     "Modified: / 05-12-2011 / 23:42:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_UnixFileSystem_setPermission: this _:a1 _: a2 _: a3 _: a4 _context: nativeContext
+_java_io_UnixFileSystem_setPermission: this _:a1 _: a2 _: a3 _: a4 
 
     <javanative: 'java/io/UnixFileSystem' name: 'setPermission(Ljava/io/File;IZZ)Z'>
     "
@@ -7821,7 +7821,7 @@
     "Modified: / 09-08-2011 / 17:18:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_UnixFileSystem_setReadOnly: this _:a1 _context: nativeContext
+_java_io_UnixFileSystem_setReadOnly: this _:a1 
 
     <javanative: 'java/io/UnixFileSystem' name: 'setReadOnly(Ljava/io/File;)Z'>
 
@@ -7841,14 +7841,14 @@
     "Modified: / 10-08-2011 / 13:40:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_Win32FileSystem_initIDs: this _context: nativeContext
+_java_io_Win32FileSystem_initIDs: this 
 
     <javanative: 'java/io/Win32FileSystem' name: 'initIDs()V'>
 
     "Intentionally left blank"
 !
 
-_java_io_WinNTFileSystem_canonicalize0: this _:a1 _context: nativeContext
+_java_io_WinNTFileSystem_canonicalize0: this _:a1 
 
     <javanative: 'java/io/WinNTFileSystem' name: 'canonicalize0(Ljava/lang/String;)Ljava/lang/String;'>
 
@@ -7861,7 +7861,7 @@
     "Created: / 01-04-2011 / 23:00:06 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_WinNTFileSystem_canonicalizeWithPrefix0: this _:a1 _: a2 _context: nativeContext
+_java_io_WinNTFileSystem_canonicalizeWithPrefix0: this _:a1 _: a2 
 
     <javanative: 'java/io/WinNTFileSystem' name: 'canonicalizeWithPrefix0(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;'>
 
@@ -7873,72 +7873,72 @@
     "Modified: / 01-09-2011 / 21:50:47 / jv"
 !
 
-_java_io_WinNTFileSystem_checkAccess: this _:a1 _: a2 _context: nativeContext
+_java_io_WinNTFileSystem_checkAccess: this _:a1 _: a2 
 
     <javanative: 'java/io/WinNTFileSystem' name: 'checkAccess(Ljava/io/File;I)Z'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_java_io_WinNTFileSystem_createDirectory: this _:a1 _context: nativeContext
+_java_io_WinNTFileSystem_createDirectory: this _:a1 
 
     <javanative: 'java/io/WinNTFileSystem' name: 'createDirectory(Ljava/io/File;)Z'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_java_io_WinNTFileSystem_createFileExclusively: this _:a1 _context: nativeContext
+_java_io_WinNTFileSystem_createFileExclusively: this _:a1 
 
     <javanative: 'java/io/WinNTFileSystem' name: 'createFileExclusively(Ljava/lang/String;)Z'>
 
-    ^ self _java_io_UnixFileSystem_createFileExclusively: this _:a1 _context: nil
+    ^ self _java_io_UnixFileSystem_createFileExclusively: this _:a1 
 
     "Modified: / 18-08-2011 / 17:26:11 / jv"
     "Modified: / 30-01-2013 / 14:17:07 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_WinNTFileSystem_delete0: this _:a1 _context: nativeContext
+_java_io_WinNTFileSystem_delete0: this _:a1 
 
     <javanative: 'java/io/WinNTFileSystem' name: 'delete0(Ljava/io/File;)Z'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_java_io_WinNTFileSystem_getBooleanAttributes: this _:a1 _context: nativeContext
+_java_io_WinNTFileSystem_getBooleanAttributes: this _:a1 
 
     <javanative: 'java/io/WinNTFileSystem' name: 'getBooleanAttributes(Ljava/io/File;)I'>
 
-    ^ self _java_io_UnixFileSystem_getBooleanAttributes0: this _:a1 _context: nil
+    ^ self _java_io_UnixFileSystem_getBooleanAttributes0: this _:a1 
 
     "Created: / 01-04-2011 / 18:10:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 30-01-2013 / 14:17:11 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_WinNTFileSystem_getLastModifiedTime: this _:a1 _context: nativeContext
+_java_io_WinNTFileSystem_getLastModifiedTime: this _:a1 
 
     <javanative: 'java/io/WinNTFileSystem' name: 'getLastModifiedTime(Ljava/io/File;)J'>
 
-    ^ self _java_io_UnixFileSystem_getLastModifiedTime: this _:a1 _context: nil
+    ^ self _java_io_UnixFileSystem_getLastModifiedTime: this _:a1 
 
     "Modified: / 18-08-2011 / 14:12:07 / jv"
     "Modified: / 30-01-2013 / 14:17:14 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_WinNTFileSystem_getLength: this _:a1 _context: nativeContext
+_java_io_WinNTFileSystem_getLength: this _:a1 
 
     <javanative: 'java/io/WinNTFileSystem' name: 'getLength(Ljava/io/File;)J'>
 
-    ^ self _java_io_UnixFileSystem_getLength: this _:a1 _context: nil
+    ^ self _java_io_UnixFileSystem_getLength: this _:a1 
 
     "Modified: / 18-08-2011 / 14:15:36 / jv"
     "Modified: / 30-01-2013 / 14:17:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_io_WinNTFileSystem_list: this _:a1 _context: nativeContext
+_java_io_WinNTFileSystem_list: this _:a1 
 
     <javanative: 'java/io/WinNTFileSystem' name: 'list(Ljava/io/File;)[Ljava/lang/String;'>
 
-    ^ self _java_io_UnixFileSystem_list: this _:a1 _context: nil
+    ^ self _java_io_UnixFileSystem_list: this _:a1 
 
     "Modified: / 01-09-2011 / 21:46:37 / jv"
     "Modified: / 30-01-2013 / 14:17:22 / Jan Vrany <jan.vrany@fit.cvut.cz>"
@@ -7946,7 +7946,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - java.lang'!
 
-_java_lang_ClassLoader_NativeLibrary_load: this _:a1 _context: nativeContext
+_java_lang_ClassLoader_NativeLibrary_load: this _:a1 
     <javanative: 'java/lang/ClassLoader$NativeLibrary' name: 'load(Ljava/lang/String;)V'>
     "/ introduced with jdk1.2 ... (sigh)
 
@@ -7993,7 +7993,7 @@
     "Modified: / 03-11-2011 / 18:25:08 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
 !
 
-_java_lang_ClassLoader_defineClass1: this _:a1 _: a2 _: a3 _: a4 _: a5 _: a6 _context: nativeContext
+_java_lang_ClassLoader_defineClass1: this _:a1 _: a2 _: a3 _: a4 _: a5 _: a6 
     <javanative: 'java/lang/ClassLoader' name: 'defineClass1(Ljava/lang/String;[BIILjava/security/ProtectionDomain;Ljava/lang/String;)Ljava/lang/Class;'>
     "
      private native Class defineClass1(String name, byte[] b, int off, int len,
@@ -8038,7 +8038,7 @@
     "Modified: / 16-01-2013 / 21:28:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_ClassLoader_findBootstrapClass: this _:a1 _context: nativeContext
+_java_lang_ClassLoader_findBootstrapClass: this _:a1 
     <javanative: 'java/lang/ClassLoader' name: 'findBootstrapClass(Ljava/lang/String;)Ljava/lang/Class;'>
     "Return class loaded by bootstrap (primordial) classloader or null.
      See OpenJDK, file src/jdk7/hostspot/src/share/vm/prims/jvm.cpp"
@@ -8058,7 +8058,7 @@
     "Modified: / 02-11-2011 / 20:13:41 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
 !
 
-_java_lang_ClassLoader_findLoadedClass0: this _:a1 _context: nativeContext
+_java_lang_ClassLoader_findLoadedClass0: this _:a1 
 
     <javanative: 'java/lang/ClassLoader' name: 'findLoadedClass0(Ljava/lang/String;)Ljava/lang/Class;'>
 
@@ -8083,7 +8083,7 @@
     "Modified: / 30-10-2011 / 21:48:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_ClassLoader_registerNatives: this _context: nativeContext
+_java_lang_ClassLoader_registerNatives: this 
 
     <javanative: 'java/lang/ClassLoader' name: 'registerNatives()V'>
 
@@ -8093,7 +8093,7 @@
     "Created: / 09-11-2010 / 20:55:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_ClassLoader_resolveClass0: this _:a1 _context: nativeContext
+_java_lang_ClassLoader_resolveClass0: this _:a1 
     <javanative: 'java/lang/ClassLoader' name: 'resolveClass0(Ljava/lang/Class;)V'>
     "resolve a new class as previously created by defineClass0"
     "or to be more precise - link class"
@@ -8133,7 +8133,7 @@
     "Modified: / 12-12-2011 / 14:12:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_ClassLoader_retrieveDirectives: this _context: nativeContext
+_java_lang_ClassLoader_retrieveDirectives: this 
 
     <javanative: 'java/lang/ClassLoader' name: 'retrieveDirectives()Ljava/lang/AssertionStatusDirectives;'>
 
@@ -8154,7 +8154,7 @@
     "Modified: / 06-07-2012 / 08:49:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_desiredAssertionStatus0: this _:a1 _context: nativeContext
+_java_lang_Class_desiredAssertionStatus0: this _:a1 
 
     <javanative: 'java/lang/Class' name: 'desiredAssertionStatus0(Ljava/lang/Class;)Z'>
 
@@ -8164,7 +8164,7 @@
     "Created: / 24-11-2010 / 08:58:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_forName0: this _:a1 _: a2 _: a3 _context: nativeContext
+_java_lang_Class_forName0: this _:a1 _: a2 _: a3 
     <javanative: 'java/lang/Class' name: 'forName0(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;'>
     |nm initialize loader class descriptor|
 
@@ -8209,7 +8209,7 @@
     "Modified (format): / 03-12-2011 / 10:49:05 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_getClassLoader0: this _context: nativeContext
+_java_lang_Class_getClassLoader0: this 
 
     <javanative: 'java/lang/Class' name: 'getClassLoader0()Ljava/lang/ClassLoader;'>
 
@@ -8223,7 +8223,7 @@
     "Created: / 19-01-2013 / 23:40:55 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_getComponentType: this _context: nativeContext
+_java_lang_Class_getComponentType: this 
 
     <javanative: 'java/lang/Class' name: 'getComponentType()Ljava/lang/Class;'>
 
@@ -8241,7 +8241,7 @@
     "Modified: / 28-01-2011 / 15:18:59 / Marcel Hlopko <hlopik@gmail.com>"
 !
 
-_java_lang_Class_getConstantPool: this _context: nativeContext
+_java_lang_Class_getConstantPool: this 
 
     <javanative: 'java/lang/Class' name: 'getConstantPool()Lsun/reflect/ConstantPool;'>
 
@@ -8259,7 +8259,7 @@
     "Modified: / 31-07-2012 / 00:47:15 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_getDeclaredClasses0: this _context: nativeContext
+_java_lang_Class_getDeclaredClasses0: this 
 
     <javanative: 'java/lang/Class' name: 'getDeclaredClasses0()[Ljava/lang/Class;'>
 
@@ -8277,7 +8277,7 @@
     "Created: / 19-01-2013 / 23:41:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_getDeclaredConstructors0: this _:a1 _context: nativeContext
+_java_lang_Class_getDeclaredConstructors0: this _:a1 
     <javanative: 'java/lang/Class' name: 'getDeclaredConstructors0(Z)[Ljava/lang/reflect/Constructor;'>
 
     | class publicOnly |
@@ -8291,7 +8291,7 @@
     "Modified (format): / 01-08-2012 / 11:15:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_getDeclaredFields0: this _:a1 _context: nativeContext
+_java_lang_Class_getDeclaredFields0: this _:a1 
     <javanative: 'java/lang/Class' name: 'getDeclaredFields0(Z)[Ljava/lang/reflect/Field;'>
     |class fields publicOnly|
 
@@ -8310,7 +8310,7 @@
     "Modified: / 30-01-2013 / 14:15:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_getDeclaredMethods0: this _:a1 _context: nativeContext
+_java_lang_Class_getDeclaredMethods0: this _:a1 
     <javanative: 'java/lang/Class' name: 'getDeclaredMethods0(Z)[Ljava/lang/reflect/Method;'>
 
     | class publicOnly |
@@ -8325,7 +8325,7 @@
     "Modified: / 01-08-2012 / 11:15:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_getDeclaringClass: this _context: nativeContext
+_java_lang_Class_getDeclaringClass: this 
     <javanative: 'java/lang/Class' name: 'getDeclaringClass()Ljava/lang/Class;'>
     "
      /**
@@ -8353,7 +8353,7 @@
     "Modified: / 13-08-2011 / 02:01:19 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_getEnclosingMethod0: this _context: nativeContext
+_java_lang_Class_getEnclosingMethod0: this 
 
     <javanative: 'java/lang/Class' name: 'getEnclosingMethod0()[Ljava/lang/Object;'>
 
@@ -8362,7 +8362,7 @@
     "Modified: / 14-08-2011 / 20:05:05 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_getGenericSignature: this _context: nativeContext
+_java_lang_Class_getGenericSignature: this 
 
     <javanative: 'java/lang/Class' name: 'getGenericSignature()Ljava/lang/String;'>
 
@@ -8379,7 +8379,7 @@
     "Modified: / 22-08-2012 / 11:58:28 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_getInterfaces: this _context: nativeContext
+_java_lang_Class_getInterfaces: this 
     <javanative: 'java/lang/Class' name: 'getInterfaces()[Ljava/lang/Class;'>
     |jClass cls interfaces jInterfaces|
 
@@ -8395,7 +8395,7 @@
     "Modified: / 22-08-2012 / 11:08:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_getModifiers: this _context: nativeContext
+_java_lang_Class_getModifiers: this 
     <javanative: 'java/lang/Class' name: 'getModifiers()I'>
     | cls |
 
@@ -8407,7 +8407,7 @@
     "Modified: / 22-08-2012 / 11:04:04 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_getName0: this _context: nativeContext
+_java_lang_Class_getName0: this 
 
     <javanative: 'java/lang/Class' name: 'getName0()Ljava/lang/String;'>
 
@@ -8422,7 +8422,7 @@
     "Modified: / 19-01-2013 / 23:48:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_getPrimitiveClass: this _:a1 _context: nativeContext
+_java_lang_Class_getPrimitiveClass: this _:a1 
 
     <javanative: 'java/lang/Class' name: 'getPrimitiveClass(Ljava/lang/String;)Ljava/lang/Class;'>
 
@@ -8441,7 +8441,7 @@
     "Modified: / 03-02-2011 / 21:43:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_getProtectionDomain0: this _context: nativeContext
+_java_lang_Class_getProtectionDomain0: this 
 
     <javanative: 'java/lang/Class' name: 'getProtectionDomain0()Ljava/security/ProtectionDomain;'>
 
@@ -8450,7 +8450,7 @@
     "Modified: / 22-08-2012 / 12:55:51 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_getRawAnnotations: this _context: nativeContext
+_java_lang_Class_getRawAnnotations: this 
 
     <javanative: 'java/lang/Class' name: 'getRawAnnotations()[B'>
 
@@ -8473,7 +8473,7 @@
     "Modified: / 31-07-2012 / 00:46:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_getSuperclass: this _context: nativeContext
+_java_lang_Class_getSuperclass: this 
     <javanative: 'java/lang/Class' name: 'getSuperclass()Ljava/lang/Class;'>
     "return a classes superclass"
 
@@ -8501,7 +8501,7 @@
     "Modified: / 31-07-2012 / 00:50:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_isArray: this _context: nativeContext
+_java_lang_Class_isArray: this 
 
     <javanative: 'java/lang/Class' name: 'isArray()Z'>
 
@@ -8514,7 +8514,7 @@
     "Modified: / 28-01-2011 / 15:19:24 / Marcel Hlopko <hlopik@gmail.com>"
 !
 
-_java_lang_Class_isAssignableFrom: this _:a1 _context: nativeContext
+_java_lang_Class_isAssignableFrom: this _:a1 
 
     <javanative: 'java/lang/Class' name: 'isAssignableFrom(Ljava/lang/Class;)Z'>
 
@@ -8563,7 +8563,7 @@
     "Modified: / 05-02-2011 / 23:38:15 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_isInstance: this _:a1 _context: nativeContext
+_java_lang_Class_isInstance: this _:a1 
 
     <javanative: 'java/lang/Class' name: 'isInstance(Ljava/lang/Object;)Z'>
 
@@ -8614,7 +8614,7 @@
     "Modified: / 16-01-2013 / 19:46:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_isInterface: this _context: nativeContext
+_java_lang_Class_isInterface: this 
 
     <javanative: 'java/lang/Class' name: 'isInterface()Z'>
 
@@ -8637,7 +8637,7 @@
     "Modified: / 03-02-2011 / 21:50:19 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_isPrimitive: this _context: nativeContext
+_java_lang_Class_isPrimitive: this 
 
     <javanative: 'java/lang/Class' name: 'isPrimitive()Z'>
 
@@ -8657,7 +8657,7 @@
     "Modified: / 04-02-2011 / 11:56:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_registerNatives: this _context: nativeContext
+_java_lang_Class_registerNatives: this 
 
     <javanative: 'java/lang/Class' name: 'registerNatives()V'>
 
@@ -8667,7 +8667,7 @@
     "Created: / 20-10-2010 / 11:13:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Class_setProtectionDomain0: this _: a1 _context: nativeContext
+_java_lang_Class_setProtectionDomain0: this _: a1 
 
     <javanative: 'java/lang/Class' name: 'setProtectionDomain0()Ljava/security/ProtectionDomain;'>
 
@@ -8677,28 +8677,28 @@
     "Created: / 21-01-2013 / 17:27:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Compiler_disable: this _context: nativeContext
+_java_lang_Compiler_disable: this 
 
     <javanative: 'java/lang/Compiler' name: 'disable()V'>
 
     "Modified: / 09-02-2012 / 22:56:44 / mh <hlopik@gmail.com>"
 !
 
-_java_lang_Compiler_enable: this _context: nativeContext
+_java_lang_Compiler_enable: this 
 
     <javanative: 'java/lang/Compiler' name: 'enable()V'>
 
     "Modified: / 09-02-2012 / 22:57:15 / mh <hlopik@gmail.com>"
 !
 
-_java_lang_Compiler_registerNatives: this _context: nativeContext
+_java_lang_Compiler_registerNatives: this 
 
     <javanative: 'java/lang/Compiler' name: 'registerNatives()V'>
 
     "Modified: / 09-02-2012 / 22:56:37 / mh <hlopik@gmail.com>"
 !
 
-_java_lang_Double_doubleToRawLongBits: this _:a1 _: a2 _context: nativeContext
+_java_lang_Double_doubleToRawLongBits: this _:a1 _: a2 
 
     <javanative: 'java/lang/Double' name: 'doubleToRawLongBits(D)J'>
 
@@ -8762,7 +8762,7 @@
     "Modified: / 16-12-2012 / 23:23:14 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Double_longBitsToDouble: this _:a1 _: a2 _context: nativeContext
+_java_lang_Double_longBitsToDouble: this _:a1 _: a2 
 
     <javanative: 'java/lang/Double' name: 'longBitsToDouble(J)D'>
 
@@ -8809,7 +8809,7 @@
     "Modified: / 16-12-2012 / 23:24:07 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Float_floatToRawIntBits: this _:a1 _context: nativeContext
+_java_lang_Float_floatToRawIntBits: this _:a1 
 
     <javanative: 'java/lang/Float' name: 'floatToRawIntBits(F)I'>
 
@@ -8863,7 +8863,7 @@
     "Modified: / 16-12-2012 / 11:16:28 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Float_intBitsToFloat: this _:a1 _context: nativeContext
+_java_lang_Float_intBitsToFloat: this _:a1 
 
     <javanative: 'java/lang/Float' name: 'intBitsToFloat(I)F'>
 
@@ -8881,7 +8881,7 @@
     "Modified: / 16-12-2012 / 10:39:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Object_clone: this _context: nativeContext
+_java_lang_Object_clone: this 
 
     <javanative: 'java/lang/Object' name: 'clone()Ljava/lang/Object;'>
 
@@ -8896,7 +8896,7 @@
     "Created: / 4.1.1998 / 19:39:26 / cg"
 !
 
-_java_lang_Object_getClass: this _context: nativeContext
+_java_lang_Object_getClass: this 
     <javanative: 'java/lang/Object' name: 'getClass()Ljava/lang/Class;'>
     "return an objects class"
 
@@ -8911,7 +8911,7 @@
     "Modified: / 23.1.1998 / 17:48:22 / cg"
 !
 
-_java_lang_Object_hashCode: this _context: nativeContext
+_java_lang_Object_hashCode: this 
 
     <javanative: 'java/lang/Object' name: 'hashCode()I'>
 
@@ -8926,7 +8926,7 @@
     "Created: / 4.1.1998 / 19:40:26 / cg"
 !
 
-_java_lang_Object_notify: this _context: nativeContext
+_java_lang_Object_notify: this 
     <javanative: 'java/lang/Object' name: 'notify()V'>
     "wakeup"
 
@@ -8936,7 +8936,7 @@
     "Modified: / 22-11-2011 / 13:24:12 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
 !
 
-_java_lang_Object_notifyAll: this _context: nativeContext
+_java_lang_Object_notifyAll: this 
     <javanative: 'java/lang/Object' name: 'notifyAll()V'>
     JavaVM notifyAll: this.
 
@@ -8945,7 +8945,7 @@
     "Modified: / 16-01-2013 / 19:47:33 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Object_registerNatives: this _context: nativeContext
+_java_lang_Object_registerNatives: this 
 
     <javanative: 'java/lang/Object' name: 'registerNatives()V'>
 
@@ -8956,7 +8956,7 @@
     "Modified: / 20-10-2010 / 10:57:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Object_wait: this _:a1 _: a2 _context: nativeContext
+_java_lang_Object_wait: this _:a1 _: a2 
     <javanative: 'java/lang/Object' name: 'wait(J)V'>
     | tmo  handle |
     handle := this.
@@ -8973,7 +8973,7 @@
     "Modified: / 16-01-2013 / 19:47:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Package_getSystemPackage0: this _:a1 _context: nativeContext
+_java_lang_Package_getSystemPackage0: this _:a1 
 
     <javanative: 'java/lang/Package' name: 'getSystemPackage0(Ljava/lang/String;)Ljava/lang/String;'>
 
@@ -8992,7 +8992,7 @@
     "Modified: / 16-08-2012 / 17:45:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_ProcessEnvironment_environ: this _context: nativeContext
+_java_lang_ProcessEnvironment_environ: this 
 
     <javanative: 'java/lang/ProcessEnvironment' name: 'environ()[[B'>
 
@@ -9011,14 +9011,14 @@
     "Modified: / 25-06-2011 / 08:57:47 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_ProcessEnvironment_environmentBlock: this _context: nativeContext
+_java_lang_ProcessEnvironment_environmentBlock: this 
 
     <javanative: 'java/lang/ProcessEnvironment' name: 'environmentBlock()Ljava/lang/String;'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_java_lang_Runtime_availableProcessors: this _context: nativeContext
+_java_lang_Runtime_availableProcessors: this 
 
     <javanative: 'java/lang/Runtime' name: 'availableProcessors()I'>
     "
@@ -9041,7 +9041,7 @@
     "Modified: / 03-09-2012 / 18:53:04 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Runtime_freeMemory: this _context: nativeContext
+_java_lang_Runtime_freeMemory: this 
 
     <javanative: 'java/lang/Runtime' name: 'freeMemory()J'>
 
@@ -9052,7 +9052,7 @@
     "Created: / 12.1.1998 / 12:59:53 / cg"
 !
 
-_java_lang_Runtime_gc: this _context: nativeContext
+_java_lang_Runtime_gc: this 
 
     <javanative: 'java/lang/Runtime' name: 'gc()V'>
 
@@ -9064,7 +9064,7 @@
     "Modified: / 12.1.1998 / 12:58:32 / cg"
 !
 
-_java_lang_Runtime_runFinalization0: this _context: nativeContext
+_java_lang_Runtime_runFinalization0: this 
 
     <javanative: 'java/lang/Runtime' name: 'runFinalization0()V'>
 
@@ -9073,7 +9073,7 @@
     "Modified: / 08-08-2011 / 17:48:57 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_SecurityManager_getClassContext: this _context: nativeContext
+_java_lang_SecurityManager_getClassContext: this 
 
     <javanative: 'java/lang/SecurityManager' name: 'getClassContext()[Ljava/lang/Class;'>
     "
@@ -9110,7 +9110,7 @@
     "Modified: / 15-11-2011 / 00:27:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Shutdown_halt0: this _:a1 _context: nativeContext
+_java_lang_Shutdown_halt0: this _:a1 
 
     <javanative: 'java/lang/Shutdown' name: 'halt0(I)V'>
 
@@ -9119,7 +9119,7 @@
     "Modified: / 06-07-2012 / 13:13:14 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_StrictMath_cbrt: this _:a1 _: a2 _context: nativeContext
+_java_lang_StrictMath_cbrt: this _:a1 _: a2 
 
     <javanative: 'java/lang/StrictMath' name: 'cbrt(D)D'>
 
@@ -9128,7 +9128,7 @@
     "Modified: / 07-09-2011 / 17:34:35 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_StrictMath_ceil: this _:a1 _: a2 _context: nativeContext
+_java_lang_StrictMath_ceil: this _:a1 _: a2 
 
     <javanative: 'java/lang/StrictMath' name: 'ceil(D)D'>
 
@@ -9137,7 +9137,7 @@
     "Modified: / 21-08-2012 / 18:01:19 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_StrictMath_cos: this _:a1 _: a2 _context: nativeContext
+_java_lang_StrictMath_cos: this _:a1 _: a2 
 
     <javanative: 'java/lang/StrictMath' name: 'cos(D)D'>
 
@@ -9146,7 +9146,7 @@
     "Modified: / 07-09-2011 / 17:34:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_StrictMath_cosh: this _:a1 _: a2 _context: nativeContext
+_java_lang_StrictMath_cosh: this _:a1 _: a2 
 
     <javanative: 'java/lang/StrictMath' name: 'cosh(D)D'>
 
@@ -9181,7 +9181,7 @@
     "Modified: / 06-09-2011 / 19:25:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_StrictMath_expm1: this _:a1 _: a2 _context: nativeContext
+_java_lang_StrictMath_expm1: this _:a1 _: a2 
 
     <javanative: 'java/lang/StrictMath' name: 'expm1(D)D'>
 
@@ -9190,7 +9190,7 @@
     "Modified: / 07-09-2011 / 17:34:02 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_StrictMath_floor: this _:a1 _: a2 _context: nativeContext
+_java_lang_StrictMath_floor: this _:a1 _: a2 
 
     <javanative: 'java/lang/StrictMath' name: 'floor(D)D'>
 
@@ -9199,7 +9199,7 @@
     "Modified: / 07-09-2011 / 17:33:35 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_StrictMath_pow: this _:a1 _: a2 _: a3 _: a4 _context: nativeContext
+_java_lang_StrictMath_pow: this _:a1 _: a2 _: a3 _: a4 
 
     <javanative: 'java/lang/StrictMath' name: 'pow(DD)D'>
 
@@ -9208,7 +9208,7 @@
     "Modified: / 07-09-2011 / 17:33:00 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_StrictMath_sin: this _:a1 _: a2 _context: nativeContext
+_java_lang_StrictMath_sin: this _:a1 _: a2 
 
     <javanative: 'java/lang/StrictMath' name: 'cos(D)D'>
 
@@ -9217,7 +9217,7 @@
     "Modified: / 07-09-2011 / 17:32:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_StrictMath_sinh: this _:a1 _: a2 _context: nativeContext
+_java_lang_StrictMath_sinh: this _:a1 _: a2 
 
     <javanative: 'java/lang/StrictMath' name: 'sinh(D)D'>
 
@@ -9255,7 +9255,7 @@
     "Modified (format): / 07-09-2011 / 17:31:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_StrictMath_sqrt: this _:a1 _: a2 _context: nativeContext
+_java_lang_StrictMath_sqrt: this _:a1 _: a2 
 
     <javanative: 'java/lang/StrictMath' name: 'sqrt(D)D'>
 
@@ -9264,14 +9264,14 @@
     "Modified: / 17-07-2012 / 20:53:15 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_StrictMath_tan: this _:a1 _: a2 _context: nativeContext
+_java_lang_StrictMath_tan: this _:a1 _: a2 
 
     <javanative: 'java/lang/StrictMath' name: 'tan(D)D'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_java_lang_StrictMath_tanh: this _:a1 _: a2 _context: nativeContext
+_java_lang_StrictMath_tanh: this _:a1 _: a2 
 
     <javanative: 'java/lang/StrictMath' name: 'tanh(D)D'>
     "
@@ -9312,7 +9312,7 @@
     "Modified: / 07-09-2011 / 17:32:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_String_intern: this _context: nativeContext
+_java_lang_String_intern: this 
 
     <javanative: 'java/lang/String' name: 'intern()Ljava/lang/String;'>
 
@@ -9322,7 +9322,7 @@
     ^ Java intern:jString
 !
 
-_java_lang_System_arraycopy: this _:a1 _: a2 _: a3 _: a4 _: a5 _context: nativeContext
+_java_lang_System_arraycopy: this _:a1 _: a2 _: a3 _: a4 _: a5 
 
     <javanative: 'java/lang/System' name: 'arraycopy(Ljava/lang/Object;ILjava/lang/Object;II)V'>
 
@@ -9412,7 +9412,7 @@
     "Modified: / 16-01-2013 / 21:22:19 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_System_currentTimeMillis: this _context: nativeContext
+_java_lang_System_currentTimeMillis: this 
 
     <javanative: 'java/lang/System' name: 'currentTimeMillis()J'>
 
@@ -9429,7 +9429,7 @@
     "Modified: / 19-07-2012 / 11:44:56 / jv"
 !
 
-_java_lang_System_identityHashCode: this _:a1 _context: nativeContext
+_java_lang_System_identityHashCode: this _:a1 
 
     <javanative: 'java/lang/System' name: 'identityHashCode(Ljava/lang/Object;)I'>
 
@@ -9442,7 +9442,7 @@
     "Created: / 12.11.1998 / 18:54:00 / cg"
 !
 
-_java_lang_System_initProperties: this _:a1 _context: nativeContext
+_java_lang_System_initProperties: this _:a1 
 
     <javanative: 'java/lang/System' name: 'initProperties(Ljava/util/Properties;)Ljava/util/Properties;'>
 
@@ -9472,7 +9472,7 @@
     "Modified: / 16-01-2013 / 19:47:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_System_mapLibraryName: this _:a1 _context: nativeContext
+_java_lang_System_mapLibraryName: this _:a1 
 
     <javanative: 'java/lang/System' name: 'mapLibraryName(Ljava/lang/String;)Ljava/lang/String;'>
 
@@ -9494,7 +9494,7 @@
     "Modified: / 01-04-2011 / 18:14:02 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_System_nanoTime: this _context: nativeContext
+_java_lang_System_nanoTime: this 
 
     <javanative: 'java/lang/System' name: 'nanoTime()J'>
 
@@ -9503,7 +9503,7 @@
     "Modified: / 07-08-2011 / 21:47:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_System_registerNatives: this _context: nativeContext
+_java_lang_System_registerNatives: this 
 
     <javanative: 'java/lang/System' name: 'registerNatives()V'>
 
@@ -9513,7 +9513,7 @@
     "Created: / 20-10-2010 / 10:56:35 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_System_setErr0: this _:a1 _context: nativeContext
+_java_lang_System_setErr0: this _:a1 
 
     <javanative: 'java/lang/System' name: 'setErr0(Ljava/io/PrintStream;)V'>
 
@@ -9530,7 +9530,7 @@
     "Modified: / 16-01-2013 / 19:48:15 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_System_setIn0: this _:a1 _context: nativeContext
+_java_lang_System_setIn0: this _:a1 
 
     <javanative: 'java/lang/System' name: 'setIn0(Ljava/io/InputStream;)V'>
 
@@ -9546,7 +9546,7 @@
     "Modified: / 4.1.1998 / 16:20:44 / cg"
 !
 
-_java_lang_System_setOut0: this _:a1 _context: nativeContext
+_java_lang_System_setOut0: this _:a1 
 
     <javanative: 'java/lang/System' name: 'setOut0(Ljava/io/PrintStream;)V'>
 
@@ -9562,7 +9562,7 @@
     "Modified: / 16-01-2013 / 19:48:25 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Thread_currentThread: this _context: nativeContext
+_java_lang_Thread_currentThread: this 
     <javanative: 'java/lang/Thread' name: 'currentThread()Ljava/lang/Thread;'>
     | t  p nctx |
     p := Processor activeProcess.
@@ -9585,7 +9585,7 @@
     "Modified: / 30-01-2013 / 14:17:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Thread_holdsLock: this _:a1 _context: nativeContext
+_java_lang_Thread_holdsLock: this _:a1 
     <javanative: 'java/lang/Thread' name: 'holdsLock(Ljava/lang/Object;)Z'>
     | obj  mon  thisProcess |
     obj := a1.
@@ -9600,7 +9600,7 @@
     "Modified: / 27-08-2012 / 11:36:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Thread_interrupt0: this _context: nativeContext
+_java_lang_Thread_interrupt0: this 
     <javanative: 'java/lang/Thread' name: 'interrupt0()V'>
     | jThread  stProcess |
     jThread := this.
@@ -9614,7 +9614,7 @@
     "Modified: / 16-01-2013 / 19:48:55 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Thread_isAlive: this _context: nativeContext
+_java_lang_Thread_isAlive: this 
 
     <javanative: 'java/lang/Thread' name: 'isAlive()Z'>
 
@@ -9637,7 +9637,7 @@
     "Modified: / 6.2.1998 / 02:15:01 / cg"
 !
 
-_java_lang_Thread_isInterrupted: this _:a1 _context: nativeContext
+_java_lang_Thread_isInterrupted: this _:a1 
     <javanative: 'java/lang/Thread' name: 'isInterrupted(Z)Z'>
     "ask if a thread is interrupted (clear interruptState if arg is true)"
 
@@ -9657,7 +9657,7 @@
     "Modified: / 16-01-2013 / 19:49:02 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Thread_registerNatives: this _context: nativeContext
+_java_lang_Thread_registerNatives: this 
 
     <javanative: 'java/lang/Thread' name: 'registerNatives()V'>
 
@@ -9667,7 +9667,7 @@
     "Created: / 20-10-2010 / 11:12:39 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Thread_resume0: this _context: nativeContext
+_java_lang_Thread_resume0: this 
 
     <javanative: 'java/lang/Thread' name: 'resume0()V'>
 
@@ -9689,7 +9689,7 @@
     "Modified: / 6.2.1998 / 02:15:08 / cg"
 !
 
-_java_lang_Thread_setPriority0: this _:a1 _context: nativeContext
+_java_lang_Thread_setPriority0: this _:a1 
 
     <javanative: 'java/lang/Thread' name: 'setPriority0(I)V'>
 
@@ -9709,7 +9709,7 @@
     "Modified: / 01-05-2011 / 13:25:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Thread_sleep: this _:a1 _: a2 _context: nativeContext
+_java_lang_Thread_sleep: this _:a1 _: a2 
     <javanative: 'java/lang/Thread' name: 'sleep(J)V'>
     "sleep for some milliseconds "
 
@@ -9733,7 +9733,7 @@
     "Modified: / 16-01-2013 / 19:49:07 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Thread_start0: this _context: nativeContext
+_java_lang_Thread_start0: this 
 
     <javanative: 'java/lang/Thread' name: 'start0()V'>
 
@@ -9744,7 +9744,7 @@
     "Modified: / 30-01-2013 / 14:16:04 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Thread_stop0: this _:a1 _context: nativeContext
+_java_lang_Thread_stop0: this _:a1 
 
     <javanative: 'java/lang/Thread' name: 'stop0(Ljava/lang/Object;)V'>
 
@@ -9787,7 +9787,7 @@
     "Modified: / 01-12-2011 / 18:26:51 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
 !
 
-_java_lang_Thread_yield: this _context: nativeContext
+_java_lang_Thread_yield: this 
 
     <javanative: 'java/lang/Thread' name: 'yield()V'>
 
@@ -9814,7 +9814,7 @@
     "Modified: / 23.12.1998 / 19:19:17 / cg"
 !
 
-_java_lang_Throwable_fillInStackTrace: this _context: nativeContext
+_java_lang_Throwable_fillInStackTrace: this 
     <javanative: 'java/lang/Throwable' name: 'fillInStackTrace()Ljava/lang/Throwable;'>
     | java_lang_Throwable  exceptionObject  list  con |
 
@@ -9860,7 +9860,7 @@
     "Modified: / 28-10-2011 / 22:15:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Throwable_getStackTraceDepth: this _context: nativeContext
+_java_lang_Throwable_getStackTraceDepth: this 
 
     <javanative: 'java/lang/Throwable' name: 'getStackTraceDepth()I'>
 
@@ -9870,7 +9870,7 @@
     "Modified: / 01-05-2011 / 20:25:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_Throwable_getStackTraceElement: this _:a1 _context: nativeContext
+_java_lang_Throwable_getStackTraceElement: this _:a1 
 
     <javanative: 'java/lang/Throwable' name: 'getStackTraceElement(I)Ljava/lang/StackTraceElement;'>
 
@@ -9901,14 +9901,14 @@
     "Modified: / 02-12-2011 / 23:36:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_UNIXProcess_forkAndExec: this _:a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _: a8 _: a9 _: a10 _context: nativeContext
+_java_lang_UNIXProcess_forkAndExec: this _:a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _: a8 _: a9 _: a10 
 
     <javanative: 'java/lang/UNIXProcess' name: 'forkAndExec([B[BI[BI[BZLjava/io/FileDescriptor;Ljava/io/FileDescriptor;Ljava/io/FileDescriptor;)I'>
 
     "^ UnimplementedNativeMethodSignal raise"
 !
 
-_java_lang_UNIXProcess_initIDs: this _context: nativeContext
+_java_lang_UNIXProcess_initIDs: this 
 
     <javanative: 'java/lang/UNIXProcess' name: 'initIDs()V'>
 
@@ -9917,7 +9917,7 @@
     "Modified: / 25-06-2011 / 10:05:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_UNIXProcess_waitForProcessExit: this _:a1 _context: nativeContext
+_java_lang_UNIXProcess_waitForProcessExit: this _:a1 
 
     <javanative: 'java/lang/UNIXProcess' name: 'waitForProcessExit(I)I'>
 
@@ -9927,7 +9927,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - java.lang.ref'!
 
-_java_lang_ref_Finalizer_invokeFinalizeMethod: this _:a1 _context: nativeContext
+_java_lang_ref_Finalizer_invokeFinalizeMethod: this _:a1 
 
     <javanative: 'java/lang/ref/Finalizer' name: 'invokeFinalizeMethod(Ljava/lang/Object;)V'>
 
@@ -9943,7 +9943,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - java.lang.reflect'!
 
-_java_lang_reflect_Array_getLength: this _:a1 _context: nativeContext
+_java_lang_reflect_Array_getLength: this _:a1 
 
     <javanative: 'java/lang/reflect/Array' name: 'getLength(Ljava/lang/Object;)I'>
 
@@ -9952,7 +9952,7 @@
     "Modified: / 17-08-2011 / 09:02:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_reflect_Array_multiNewArray: this _:a1 _: a2 _context: nativeContext
+_java_lang_reflect_Array_multiNewArray: this _:a1 _: a2 
 
     <javanative: 'java/lang/reflect/Array' name: 'multiNewArray(Ljava/lang/Class;[I)Ljava/lang/Object;'>
 
@@ -10012,7 +10012,7 @@
     "Modified: / 22-11-2011 / 10:42:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_reflect_Array_newArray: this _:a1 _: a2 _context: nativeContext
+_java_lang_reflect_Array_newArray: this _:a1 _: a2 
     <javanative: 'java/lang/reflect/Array' name: 'newArray(Ljava/lang/Class;I)Ljava/lang/Object;'>
     |componentClass size|
 
@@ -10040,7 +10040,7 @@
     "Modified: / 22-11-2011 / 09:13:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_reflect_Array_set: this _: array _: index0 _: value _context: nativeContext
+_java_lang_reflect_Array_set: this _: array _: index0 _: value 
 
     <javanative: 'java/lang/reflect/Array' name: 'set(Ljava/lang/Object;ILjava/lang/Object;)V'>
 
@@ -10073,7 +10073,7 @@
     "Modified: / 30-01-2013 / 13:45:15 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_lang_reflect_Proxy_defineClass0: this _:a1 _: a2 _: a3 _: a4 _: a5 _context: nativeContext
+_java_lang_reflect_Proxy_defineClass0: this _:a1 _: a2 _: a3 _: a4 _: a5 
 
     <javanative: 'java/lang/reflect/Proxy' name: 'defineClass0(Ljava/lang/ClassLoader;Ljava/lang/String;[BII)Ljava/lang/Class;'>
 
@@ -10103,7 +10103,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - java.net'!
 
-_java_net_DatagramPacket_init: this _context: nativeContext
+_java_net_DatagramPacket_init: this 
 
     <javanative: 'java/net/DatagramPacket' name: 'init()V'>
 
@@ -10112,14 +10112,14 @@
     "Modified: / 13-09-2011 / 22:33:57 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_Inet4AddressImpl_getHostByAddr: this _:a1 _context: nativeContext
+_java_net_Inet4AddressImpl_getHostByAddr: this _:a1 
 
     <javanative: 'java/net/Inet4AddressImpl' name: 'getHostByAddr([B)Ljava/lang/String;'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_java_net_Inet4AddressImpl_getLocalHostName: this _context: nativeContext
+_java_net_Inet4AddressImpl_getLocalHostName: this 
 
     <javanative: 'java/net/Inet4AddressImpl' name: 'getLocalHostName()Ljava/lang/String;'>
 
@@ -10128,7 +10128,7 @@
     "Modified: / 13-09-2011 / 22:36:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_Inet4AddressImpl_lookupAllHostAddr: this _:a1 _context: nativeContext
+_java_net_Inet4AddressImpl_lookupAllHostAddr: this _:a1 
 
     <javanative: 'java/net/Inet4AddressImpl' name: 'lookupAllHostAddr(Ljava/lang/String;)[Ljava/net/InetAddress;'>
 
@@ -10156,7 +10156,7 @@
     "Modified: / 08-11-2011 / 10:10:25 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_Inet4Address_init: this _context: nativeContext
+_java_net_Inet4Address_init: this 
 
     <javanative: 'java/net/Inet4Address' name: 'init()V'>
 
@@ -10165,7 +10165,7 @@
     "Modified: / 13-09-2011 / 22:31:47 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_Inet6Address_init: this _context: nativeContext
+_java_net_Inet6Address_init: this 
 
     <javanative: 'java/net/Inet6Address' name: 'init()V'>
 
@@ -10174,7 +10174,7 @@
     "Modified: / 13-09-2011 / 22:32:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_InetAddressImplFactory_isIPv6Supported: this _context: nativeContext
+_java_net_InetAddressImplFactory_isIPv6Supported: this 
 
     <javanative: 'java/net/InetAddressImplFactory' name: 'isIPv6Supported()Z'>
 
@@ -10183,7 +10183,7 @@
     "Modified: / 13-09-2011 / 19:43:05 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_InetAddress_init: this _context: nativeContext
+_java_net_InetAddress_init: this 
 
     <javanative: 'java/net/InetAddress' name: 'init()V'>
 
@@ -10193,21 +10193,21 @@
     "Modified (comment): / 13-09-2011 / 22:32:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_NetworkInterface_getAll: this _context: nativeContext
+_java_net_NetworkInterface_getAll: this 
 
     <javanative: 'java/net/NetworkInterface' name: 'getAll()[Ljava/net/NetworkInterface;'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_java_net_NetworkInterface_getByName0: this _:a1 _context: nativeContext
+_java_net_NetworkInterface_getByName0: this _:a1 
 
     <javanative: 'java/net/NetworkInterface' name: 'getByName0(Ljava/lang/String;)Ljava/net/NetworkInterface;'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_java_net_NetworkInterface_init: this _context: nativeContext
+_java_net_NetworkInterface_init: this 
 
     <javanative: 'java/net/NetworkInterface' name: 'init()V'>
 
@@ -10216,7 +10216,7 @@
     "Modified: / 13-09-2011 / 22:33:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_PlainDatagramSocketImpl_bind0: this _:a1 _: a2 _context: nativeContext
+_java_net_PlainDatagramSocketImpl_bind0: this _:a1 _: a2 
 
     <javanative: 'java/net/PlainDatagramSocketImpl' name: 'bind0(ILjava/net/InetAddress;)V'>
 
@@ -10253,7 +10253,7 @@
     "Modified: / 07-11-2011 / 21:45:26 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_PlainDatagramSocketImpl_datagramSocketClose: this _context: nativeContext
+_java_net_PlainDatagramSocketImpl_datagramSocketClose: this 
 
     <javanative: 'java/net/PlainDatagramSocketImpl' name: 'datagramSocketClose()V'>
 
@@ -10273,7 +10273,7 @@
     "Created: / 25.1.1998 / 20:04:24 / cg"
 !
 
-_java_net_PlainDatagramSocketImpl_datagramSocketCreate: this _context: nativeContext
+_java_net_PlainDatagramSocketImpl_datagramSocketCreate: this 
 
     <javanative: 'java/net/PlainDatagramSocketImpl' name: 'datagramSocketCreate()V'>
 
@@ -10308,7 +10308,7 @@
     "Modified: / 23-07-2012 / 19:37:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_PlainDatagramSocketImpl_init: this _context: nativeContext
+_java_net_PlainDatagramSocketImpl_init: this 
 
     <javanative: 'java/net/PlainDatagramSocketImpl' name: 'init()V'>
 
@@ -10317,14 +10317,14 @@
     "Modified: / 13-09-2011 / 22:36:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_PlainDatagramSocketImpl_receive0: this _:a1 _context: nativeContext
+_java_net_PlainDatagramSocketImpl_receive0: this _:a1 
 
     <javanative: 'java/net/PlainDatagramSocketImpl' name: 'receive0(Ljava/net/DatagramPacket;)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_java_net_PlainDatagramSocketImpl_send: this _:a1 _context: nativeContext
+_java_net_PlainDatagramSocketImpl_send: this _:a1 
 
     <javanative: 'java/net/PlainDatagramSocketImpl' name: 'send(Ljava/net/DatagramPacket;)V'>
 
@@ -10346,7 +10346,7 @@
     "Modified: / 30.12.1998 / 20:10:16 / cg"
 !
 
-_java_net_PlainDatagramSocketImpl_socketSetOption: this _:a1 _: a2 _context: nativeContext
+_java_net_PlainDatagramSocketImpl_socketSetOption: this _:a1 _: a2 
 
     <javanative: 'java/net/PlainDatagramSocketImpl' name: 'socketSetOption(ILjava/lang/Object;)V'>
 
@@ -10393,7 +10393,7 @@
     "Modified: / 30.12.1998 / 20:10:16 / cg"
 !
 
-_java_net_PlainSocketImpl_initProto: this _context: nativeContext
+_java_net_PlainSocketImpl_initProto: this 
 
     <javanative: 'java/net/PlainSocketImpl' name: 'initProto()V'>
 
@@ -10403,7 +10403,7 @@
     "Modified (comment): / 13-09-2011 / 22:36:35 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_PlainSocketImpl_socketAccept: this _:a1 _context: nativeContext
+_java_net_PlainSocketImpl_socketAccept: this _:a1 
 
     <javanative: 'java/net/PlainSocketImpl' name: 'socketAccept(Ljava/net/SocketImpl;)V'>
 
@@ -10451,7 +10451,7 @@
     "Modified: / 23-07-2012 / 19:37:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_PlainSocketImpl_socketAvailable: this _context: nativeContext
+_java_net_PlainSocketImpl_socketAvailable: this 
 
     <javanative: 'java/net/PlainSocketImpl' name: 'socketAvailable()I'>
 
@@ -10472,7 +10472,7 @@
     "Modified: / 30.12.1998 / 20:10:08 / cg"
 !
 
-_java_net_PlainSocketImpl_socketBind: this _:a1 _: a2 _context: nativeContext
+_java_net_PlainSocketImpl_socketBind: this _:a1 _: a2 
 
     <javanative: 'java/net/PlainSocketImpl' name: 'socketBind(Ljava/net/InetAddress;I)V'>
 
@@ -10515,7 +10515,7 @@
     "Modified: / 19-11-2011 / 00:43:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_PlainSocketImpl_socketClose0: this _:a1 _context: nativeContext
+_java_net_PlainSocketImpl_socketClose0: this _:a1 
 
     <javanative: 'java/net/PlainSocketImpl' name: 'socketClose0(Z)V'>
 
@@ -10524,7 +10524,7 @@
     "Modified: / 30-01-2013 / 14:16:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_PlainSocketImpl_socketConnect: this _:a1 _: a2 _: a3 _context: nativeContext
+_java_net_PlainSocketImpl_socketConnect: this _:a1 _: a2 _: a3 
 
     <javanative: 'java/net/PlainSocketImpl' name: 'socketConnect(Ljava/net/InetAddress;II)V'>
 
@@ -10597,7 +10597,7 @@
     "Modified: / 13-11-2011 / 23:16:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_PlainSocketImpl_socketCreate: this _:a1 _context: nativeContext
+_java_net_PlainSocketImpl_socketCreate: this _:a1 
 
     <javanative: 'java/net/PlainSocketImpl' name: 'socketCreate(Z)V'>
 
@@ -10653,7 +10653,7 @@
     "Modified: / 23-07-2012 / 19:38:12 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_PlainSocketImpl_socketGetOption: this _:a1 _: a2 _context: nativeContext
+_java_net_PlainSocketImpl_socketGetOption: this _:a1 _: a2 
 
     <javanative: 'java/net/PlainSocketImpl' name: 'socketGetOption(ILjava/lang/Object;)I'>
 
@@ -10721,7 +10721,7 @@
     "Modified: / 13-11-2011 / 23:06:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_PlainSocketImpl_socketListen: this _:a1 _context: nativeContext
+_java_net_PlainSocketImpl_socketListen: this _:a1 
 
     <javanative: 'java/net/PlainSocketImpl' name: 'socketListen(I)V'>
 
@@ -10750,7 +10750,7 @@
     "Modified: / 17-08-2012 / 15:27:04 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_PlainSocketImpl_socketSetOption: this _:a1 _: a2 _: a3 _context: nativeContext
+_java_net_PlainSocketImpl_socketSetOption: this _:a1 _: a2 _: a3 
 
     <javanative: 'java/net/PlainSocketImpl' name: 'socketSetOption(IZLjava/lang/Object;)V'>
 
@@ -10825,7 +10825,7 @@
     "Modified: / 13-11-2011 / 23:05:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_SocketInputStream_init: this _context: nativeContext
+_java_net_SocketInputStream_init: this 
 
     <javanative: 'java/net/SocketInputStream' name: 'init()V'>
 
@@ -10834,7 +10834,7 @@
     "Modified: / 09-11-2011 / 22:27:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_SocketInputStream_socketRead0: this _:a1 _: a2 _: a3 _: a4 _: a5 _context: nativeContext
+_java_net_SocketInputStream_socketRead0: this _:a1 _: a2 _: a3 _: a4 _: a5 
 
     <javanative: 'java/net/SocketInputStream' name: 'socketRead0(Ljava/io/FileDescriptor;[BIII)I'>
 
@@ -10876,7 +10876,7 @@
     "Modified: / 04-12-2011 / 20:24:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_SocketOutputStream_init: this _context: nativeContext
+_java_net_SocketOutputStream_init: this 
 
     <javanative: 'java/net/SocketOutputStream' name: 'init()V'>
 
@@ -10885,7 +10885,7 @@
     "Modified: / 09-11-2011 / 23:44:00 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_net_SocketOutputStream_socketWrite0: this _:a1 _: a2 _: a3 _: a4 _context: nativeContext
+_java_net_SocketOutputStream_socketWrite0: this _:a1 _: a2 _: a3 _: a4 
 
     <javanative: 'java/net/SocketOutputStream' name: 'socketWrite0(Ljava/io/FileDescriptor;[BII)V'>
 
@@ -10916,7 +10916,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - java.nio'!
 
-_java_nio_Bits_copyFromByteArray: this _:a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _context: nativeContext
+_java_nio_Bits_copyFromByteArray: this _:a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 
     "
     static native void copyFromByteArray(Object src, long srcPos, long dstAddr,
                                          long length);
@@ -10935,7 +10935,7 @@
     "Modified: / 11-07-2012 / 10:37:35 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_nio_Bits_copyToByteArray: this _:a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _context: nativeContext
+_java_nio_Bits_copyToByteArray: this _:a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 
     "
     static native void copyToByteArray(long srcAddr, Object dst, long dstPos,
                                        long length);
@@ -10956,7 +10956,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - java.security'!
 
-_java_security_AccessController_doPrivileged: this _: a1 _: a2 _context: nativeContext
+_java_security_AccessController_doPrivileged: this _: a1 _: a2 
 
     <javanative: 'java/security/AccessController' name: ''>
 
@@ -10970,7 +10970,7 @@
     "Modified: / 20-01-2013 / 20:57:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_security_AccessController_doPrivileged: this _:a1 _context: nativeContext
+_java_security_AccessController_doPrivileged: this _:a1 
     <javanative: 'java/security/AccessController' name: 'doPrivileged(Ljava/security/PrivilegedAction;)Ljava/lang/Object;'>
     "we don't care about permissions, we will just allow this. Now it's guaranteed that called code will not perform access permission checks"
 
@@ -10987,7 +10987,7 @@
     "Modified: / 10-09-2012 / 23:22:59 / m"
 !
 
-_java_security_AccessController_getStackAccessControlContext: this _context: nativeContext
+_java_security_AccessController_getStackAccessControlContext: this 
     <javanative: 'java/security/AccessController' name: 'getStackAccessControlContext()Ljava/security/AccessControlContext;'>
     "/ introduced with jdk1.2
     "/ supposed to do more here ...
@@ -11000,7 +11000,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - java.sql'!
 
-_java_sql_DriverManager_getCallerClassLoader: this _context: nativeContext
+_java_sql_DriverManager_getCallerClassLoader: this 
 
     <javanative: 'java/sql/DriverManager' name: 'getCallerClassLoader()Ljava/lang/ClassLoader;'>
 
@@ -11014,7 +11014,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - java.text'!
 
-_java_text_Bidi_nativeBidiChars: this _:a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _context: nativeContext
+_java_text_Bidi_nativeBidiChars: this _:a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 
 
     <javanative: 'java/text/Bidi' name: 'nativeBidiChars(Ljava/text/Bidi;[CI[BIII)V'>
 
@@ -11023,7 +11023,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - java.util'!
 
-_java_util_ResourceBundle_getClassContext: this _context: nativeContext
+_java_util_ResourceBundle_getClassContext: this 
 
     <javanative: 'java/util/ResourceBundle' name: 'getClassContext()[Ljava/lang/Class;'>
 
@@ -11061,7 +11061,7 @@
     "Modified: / 09-01-2013 / 18:11:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_TimeZone_getSystemGMTOffsetID: this _context: nativeContext
+_java_util_TimeZone_getSystemGMTOffsetID: this 
 
     <javanative: 'java/util/TimeZone' name: 'getSystemGMTOffsetID()Ljava/lang/String;'>
 
@@ -11070,7 +11070,7 @@
     "Modified: / 09-01-2013 / 16:18:33 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_TimeZone_getSystemTimeZoneID: this _:a1 _: a2 _context: nativeContext
+_java_util_TimeZone_getSystemTimeZoneID: this _:a1 _: a2 
 
     <javanative: 'java/util/TimeZone' name: 'getSystemTimeZoneID(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;'>
 
@@ -11083,7 +11083,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - java.util.concurrent.atomic'!
 
-_java_util_concurrent_atomic_AtomicLong_VMSupportsCS8: this _context: nativeContext
+_java_util_concurrent_atomic_AtomicLong_VMSupportsCS8: this 
 
     <javanative: 'java/util/concurrent/atomic/AtomicLong' name: 'VMSupportsCS8()Z'>
 
@@ -11096,7 +11096,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - java.util.jar'!
 
-_java_util_jar_JarFile_getMetaInfEntryNames: this _context: nativeContext
+_java_util_jar_JarFile_getMetaInfEntryNames: this 
 
     <javanative: 'java/util/jar/JarFile' name: 'getMetaInfEntryNames()[Ljava/lang/String;'>
     "
@@ -11117,21 +11117,21 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - java.util.zip'!
 
-_java_util_zip_Adler32_updateBytes: this _:a1 _: a2 _: a3 _: a4 _context: nativeContext
+_java_util_zip_Adler32_updateBytes: this _:a1 _: a2 _: a3 _: a4 
 
     <javanative: 'java/util/zip/Adler32' name: 'updateBytes(I[BII)I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_java_util_zip_CRC32_update: this _:a1 _: a2 _context: nativeContext
+_java_util_zip_CRC32_update: this _:a1 _: a2 
 
     <javanative: 'java/util/zip/CRC32' name: 'update(II)I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_java_util_zip_CRC32_updateBytes: this _:a1 _: a2 _: a3 _: a4 _context: nativeContext
+_java_util_zip_CRC32_updateBytes: this _:a1 _: a2 _: a3 _: a4 
 
     <javanative: 'java/util/zip/CRC32' name: 'updateBytes(I[BII)I'>
 
@@ -11146,7 +11146,7 @@
     "Modified: / 05-12-2011 / 00:41:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_Deflater_deflateBytes: this _:a1 _: a2 _: a3 _: a4 _: a5 _context: nativeContext
+_java_util_zip_Deflater_deflateBytes: this _:a1 _: a2 _: a3 _: a4 _: a5 
 
     <javanative: 'java/util/zip/Deflater' name: 'deflateBytes(J[BII)I'>
 
@@ -11169,7 +11169,7 @@
     "Modified: / 25-10-2012 / 20:19:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_Deflater_end: this _:a1 _: a2 _context: nativeContext
+_java_util_zip_Deflater_end: this _:a1 _: a2 
 
     <javanative: 'java/util/zip/Deflater' name: 'end(J)V'>
 
@@ -11182,7 +11182,7 @@
     "Modified: / 25-10-2012 / 20:24:19 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_Deflater_getBytesRead: this _:a1 _: a2 _context: nativeContext
+_java_util_zip_Deflater_getBytesRead: this _:a1 _: a2 
 
     <javanative: 'java/util/zip/Deflater' name: 'getBytesRead(J)J'>
 
@@ -11194,7 +11194,7 @@
     "Modified: / 25-10-2012 / 20:19:26 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_Deflater_getBytesWritten: this _:a1 _: a2 _context: nativeContext
+_java_util_zip_Deflater_getBytesWritten: this _:a1 _: a2 
 
     <javanative: 'java/util/zip/Deflater' name: 'getBytesWritten(J)J'>
 
@@ -11206,7 +11206,7 @@
     "Modified: / 25-10-2012 / 20:19:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_Deflater_init: this _:a1 _: a2 _: a3 _context: nativeContext
+_java_util_zip_Deflater_init: this _:a1 _: a2 _: a3 
 
     <javanative: 'java/util/zip/Deflater' name: 'init(IIZ)J'>
 
@@ -11229,7 +11229,7 @@
     "Modified: / 25-10-2012 / 20:25:30 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_Deflater_initIDs: this _context: nativeContext
+_java_util_zip_Deflater_initIDs: this 
     <javanative: 'java/util/zip/Deflater' name: 'initIDs()V'>
 
     "Nothing to do here"
@@ -11238,7 +11238,7 @@
     "Modified: / 10-05-2012 / 17:03:03 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_Deflater_reset: this _:a1 _: a2 _context: nativeContext
+_java_util_zip_Deflater_reset: this _:a1 _: a2 
 
     <javanative: 'java/util/zip/Deflater' name: 'reset(J)V'>
 
@@ -11250,7 +11250,7 @@
     "Modified: / 25-10-2012 / 20:19:50 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_Inflater_end: this _:a1 _: a2 _context: nativeContext
+_java_util_zip_Inflater_end: this _:a1 _: a2 
 
     <javanative: 'java/util/zip/Inflater' name: 'end(J)V'>
 
@@ -11266,7 +11266,7 @@
     "Modified: / 25-10-2012 / 20:24:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_Inflater_getBytesRead: this _:a1 _: a2 _context: nativeContext
+_java_util_zip_Inflater_getBytesRead: this _:a1 _: a2 
 
     <javanative: 'java/util/zip/Inflater' name: 'getBytesRead(J)J'>
 
@@ -11278,7 +11278,7 @@
     "Modified: / 25-10-2012 / 20:20:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_Inflater_getBytesWritten: this _:a1 _: a2 _context: nativeContext
+_java_util_zip_Inflater_getBytesWritten: this _:a1 _: a2 
 
     <javanative: 'java/util/zip/Inflater' name: 'getBytesWritten(J)J'>
 
@@ -11290,7 +11290,7 @@
     "Modified: / 25-10-2012 / 20:20:07 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_Inflater_inflateBytes: this _:a1 _: a2 _: a3 _: a4 _: a5 _context: nativeContext
+_java_util_zip_Inflater_inflateBytes: this _:a1 _: a2 _: a3 _: a4 _: a5 
 
     <javanative: 'java/util/zip/Inflater' name: 'inflateBytes(J[BII)I'>
     "
@@ -11313,7 +11313,7 @@
     "Modified: / 25-10-2012 / 20:20:14 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_Inflater_init: this _:a1 _context: nativeContext
+_java_util_zip_Inflater_init: this _:a1 
 
     <javanative: 'java/util/zip/Inflater' name: 'init(Z)J'>
 
@@ -11335,7 +11335,7 @@
     "Modified: / 25-10-2012 / 20:25:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_Inflater_initIDs: this _context: nativeContext
+_java_util_zip_Inflater_initIDs: this 
 
     <javanative: 'java/util/zip/Inflater' name: 'initIDs()V'>
 
@@ -11345,7 +11345,7 @@
     "Created: / 30-04-2011 / 21:55:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_Inflater_reset: this _:a1 _: a2 _context: nativeContext
+_java_util_zip_Inflater_reset: this _:a1 _: a2 
 
     <javanative: 'java/util/zip/Inflater' name: 'reset(J)V'>
     "
@@ -11360,7 +11360,7 @@
     "Modified: / 25-10-2012 / 20:20:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_ZipEntry_initFields: this _:a1 _: a2 _context: nativeContext
+_java_util_zip_ZipEntry_initFields: this _:a1 _: a2 
 
     <javanative: 'java/util/zip/ZipEntry' name: 'initFields(J)V'>
 
@@ -11384,7 +11384,7 @@
     "Modified: / 05-12-2011 / 23:42:38 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_ZipEntry_initIDs: this _context: nativeContext
+_java_util_zip_ZipEntry_initIDs: this 
 
     <javanative: 'java/util/zip/ZipEntry' name: 'initIDs()V'>
 
@@ -11393,7 +11393,7 @@
     "Created: / 01-04-2011 / 13:02:06 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
 !
 
-_java_util_zip_ZipFile_close: this _:a1 _: a2 _context: nativeContext
+_java_util_zip_ZipFile_close: this _:a1 _: a2 
 
     <javanative: 'java/util/zip/ZipFile' name: 'close(J)V'>
 
@@ -11406,7 +11406,7 @@
     "Modified: / 03-11-2011 / 22:22:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_ZipFile_freeEntry: this _: jzfile _: dummy1 _: jzentry _: dummy2 _context: nativeContext
+_java_util_zip_ZipFile_freeEntry: this _: jzfile _: dummy1 _: jzentry _: dummy2 
 
     <javanative: 'java/util/zip/ZipFile' name: 'freeEntry(JJ)V'>
 
@@ -11415,7 +11415,7 @@
     "Modified: / 30-01-2013 / 13:47:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_ZipFile_getCSize: this _:a1 _: a2 _context: nativeContext
+_java_util_zip_ZipFile_getCSize: this _:a1 _: a2 
 
     <javanative: 'java/util/zip/ZipFile' name: 'getCSize(J)J'>
 
@@ -11429,7 +11429,7 @@
     "Created: / 30-04-2011 / 21:50:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_ZipFile_getEntry: this _:a1 _: a2 _: a3 _: a4 _context: nativeContext
+_java_util_zip_ZipFile_getEntry: this _:a1 _: a2 _: a3 _: a4 
 
     <javanative: 'java/util/zip/ZipFile' name: 'getEntry(JLjava/lang/String;Z)J'>
 
@@ -11453,7 +11453,7 @@
     "Modified: / 20-07-2012 / 19:27:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_ZipFile_getMethod: this _:a1 _: a2 _context: nativeContext
+_java_util_zip_ZipFile_getMethod: this _:a1 _: a2 
 
     <javanative: 'java/util/zip/ZipFile' name: 'getMethod(J)I'>
 
@@ -11467,7 +11467,7 @@
     "Created: / 30-04-2011 / 21:53:33 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_ZipFile_getNextEntry: this _:jzfile _: dummy1 _: index _context: nativeContext
+_java_util_zip_ZipFile_getNextEntry: this _:jzfile _: dummy1 _: index 
 
     <javanative: 'java/util/zip/ZipFile' name: 'getNextEntry(JI)J'>
 
@@ -11489,7 +11489,7 @@
     "Modified: / 30-01-2013 / 13:48:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_ZipFile_getSize: this _:a1 _: a2 _context: nativeContext
+_java_util_zip_ZipFile_getSize: this _:a1 _: a2 
 
     <javanative: 'java/util/zip/ZipFile' name: 'getSize(J)J'>
 
@@ -11503,7 +11503,7 @@
     "Created: / 30-04-2011 / 21:53:33 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_ZipFile_getTotal: this _:a1 _: a2 _context: nativeContext
+_java_util_zip_ZipFile_getTotal: this _:a1 _: a2 
 
     <javanative: 'java/util/zip/ZipFile' name: 'getTotal(J)I'>
 
@@ -11514,7 +11514,7 @@
     "Modified: / 23-07-2012 / 23:35:38 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_ZipFile_initIDs: this _context: nativeContext
+_java_util_zip_ZipFile_initIDs: this 
 
     <javanative: 'java/util/zip/ZipFile' name: 'initIDs()V'>
 
@@ -11524,7 +11524,7 @@
     "Created: / 23-03-2011 / 19:37:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_ZipFile_open: this _:a1 _: a2 _: a3 _: a4 _context: nativeContext
+_java_util_zip_ZipFile_open: this _:a1 _: a2 _: a3 _: a4 
 
     <javanative: 'java/util/zip/ZipFile' name: 'open(Ljava/lang/String;IJ)J'>
 
@@ -11555,7 +11555,7 @@
     "Modified: / 30-01-2013 / 13:55:50 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_java_util_zip_ZipFile_read: this _:a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _: a8 _: a9 _context: nativeContext
+_java_util_zip_ZipFile_read: this _:a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _: a8 _: a9 
 
     <javanative: 'java/util/zip/ZipFile' name: 'read(JJJ[BII)I'>
 
@@ -11581,7 +11581,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - stx.libjava'!
 
-_stx_libjava_ClassLoader_findClassS: this _:a1 _context: nativeContext
+_stx_libjava_ClassLoader_findClassS: this _:a1 
 
     <javanative: 'stx/libjava/ClassLoader' name: 'findClassS(Ljava/lang/String;)Ljava/lang/Class;'>
 
@@ -11606,7 +11606,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - stx.libjava.groovy'!
 
-_stx_libjava_groovy_GroovyClassLoader_SystemClassCollector_getDefiningClassLoader: this _context: nativeContext
+_stx_libjava_groovy_GroovyClassLoader_SystemClassCollector_getDefiningClassLoader: this 
 
     <javanative: 'stx/libjava/groovy/GroovyClassLoader$SystemClassCollector' name: 'getDefiningClassLoader()Lstx/libjava/groovy/GroovyClassLoader;'>
 
@@ -11617,7 +11617,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - stx.libjava.tests'!
 
-_stx_libjava_tests_MonitorTests_abort: this _context: nativeContext
+_stx_libjava_tests_MonitorTests_abort: this 
 
     <javanative: 'stx/libjava/tests/MonitorTests' name: 'abort()V'>
 
@@ -11628,7 +11628,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - stx.libjava.tests.lang'!
 
-_stx_libjava_tests_lang_MonitorTests_abort: this _context: nativeContext
+_stx_libjava_tests_lang_MonitorTests_abort: this 
     <javanative: 'stx/libjava/tests/lang/MonitorTests' name: 'abort()V'>
         AbortOperationRequest raiseRequest.
 
@@ -11637,7 +11637,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - stx.libjava.tests.vm'!
 
-_stx_libjava_tests_vm_XLOAD_forcePatchupAndUnfix: this _context: nativeContext
+_stx_libjava_tests_vm_XLOAD_forcePatchupAndUnfix: this 
 
     <javanative: 'stx/libjava/tests/MonitorTests' name: 'abort()V'>
 
@@ -11661,21 +11661,21 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - sun.font'!
 
-_sun_font_FontManager_initIDs: this _context: nativeContext
+_sun_font_FontManager_initIDs: this 
 
     <javanative: 'sun/font/FontManager' name: 'initIDs()V'>
 
     "Modified: / 09-02-2012 / 22:56:51 / mh <hlopik@gmail.com>"
 !
 
-_sun_font_FreetypeFontScaler_initIDs: this _:a1 _context: nativeContext
+_sun_font_FreetypeFontScaler_initIDs: this _:a1 
 
     <javanative: 'sun/font/FreetypeFontScaler' name: 'initIDs(Ljava/lang/Class;)V'>
 
 
 !
 
-_sun_font_StrikeCache_getGlyphCacheDescription: this _:a1 _context: nativeContext
+_sun_font_StrikeCache_getGlyphCacheDescription: this _:a1 
     <javanative: 'sun/font/StrikeCache' name: 'getGlyphCacheDescription([J)V'>
     a1 at: 1 put: 4.
 
@@ -11685,7 +11685,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - sun.io'!
 
-_sun_io_Win32ErrorMode_setErrorMode: this _:a1 _: a2 _context: nativeContext
+_sun_io_Win32ErrorMode_setErrorMode: this _:a1 _: a2 
 
     <javanative: 'sun/io/Win32ErrorMode' name: 'setErrorMode(J)J'>
 
@@ -11697,7 +11697,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - sun.java2d'!
 
-_sun_java2d_Disposer_initIDs: this _context: nativeContext
+_sun_java2d_Disposer_initIDs: this 
 
     <javanative: 'sun/java2d/Disposer' name: 'initIDs()V'>
 
@@ -11706,7 +11706,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - sun.java2d.cmm.lcms'!
 
-_sun_java2d_cmm_lcms_LCMS_getTagData: this _:a1 _: a2 _: a3 _: a4 _context: nativeContext
+_sun_java2d_cmm_lcms_LCMS_getTagData: this _:a1 _: a2 _: a3 _: a4 
 
     <javanative: 'sun/java2d/cmm/lcms/LCMS' name: 'getTagData(JI[B)V'>
 
@@ -11730,7 +11730,7 @@
     "Modified: / 18-04-2012 / 08:29:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_java2d_cmm_lcms_LCMS_getTagSize: this _:a1 _: a2 _: a3 _context: nativeContext
+_sun_java2d_cmm_lcms_LCMS_getTagSize: this _:a1 _: a2 _: a3 
 
     <javanative: 'sun/java2d/cmm/lcms/LCMS' name: 'getTagSize(JI)I'>
 
@@ -11752,7 +11752,7 @@
     "Modified: / 18-04-2012 / 08:29:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_java2d_cmm_lcms_LCMS_initLCMS: this _:a1 _: a2 _: a3 _context: nativeContext
+_sun_java2d_cmm_lcms_LCMS_initLCMS: this _:a1 _: a2 _: a3 
 
     <javanative: 'sun/java2d/cmm/lcms/LCMS' name: 'initLCMS(Ljava/lang/Class;Ljava/lang/Class;Ljava/lang/Class;)V'>
 
@@ -11761,7 +11761,7 @@
     "Modified: / 09-12-2011 / 18:25:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_java2d_cmm_lcms_LCMS_loadProfile: this _:a1 _context: nativeContext
+_sun_java2d_cmm_lcms_LCMS_loadProfile: this _:a1 
 
     <javanative: 'sun/java2d/cmm/lcms/LCMS' name: 'loadProfile([B)J'>
 
@@ -11773,7 +11773,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - sun.java2d.pipe'!
 
-_sun_java2d_pipe_Region_initIDs: this _context: nativeContext
+_sun_java2d_pipe_Region_initIDs: this 
 
     <javanative: 'sun/java2d/pipe/Region' name: 'initIDs()V'>
 
@@ -11782,7 +11782,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - sun.management'!
 
-_sun_management_MemoryImpl_getMemoryManagers0: this _context: nativeContext
+_sun_management_MemoryImpl_getMemoryManagers0: this 
 
     <javanative: 'sun/management/MemoryImpl' name: 'getMemoryManagers0()[Ljava/lang/management/MemoryManagerMXBean;'>
 
@@ -11795,7 +11795,7 @@
     "Modified: / 04-12-2011 / 19:57:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_management_MemoryImpl_getMemoryPools0: this _context: nativeContext
+_sun_management_MemoryImpl_getMemoryPools0: this 
 
     <javanative: 'sun/management/MemoryImpl' name: 'getMemoryPools0()[Ljava/lang/management/MemoryPoolMXBean;'>
 
@@ -11808,21 +11808,21 @@
     "Modified: / 04-12-2011 / 19:58:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_management_VMManagementImpl_getStartupTime: this _context: nativeContext
+_sun_management_VMManagementImpl_getStartupTime: this 
     <javanative: 'sun/management/VMManagementImpl' name: 'getStartupTime()J'>
     ^ StartupTime.
 
     "Modified: / 03-11-2011 / 19:17:57 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
 !
 
-_sun_management_VMManagementImpl_getVersion0: this _context: nativeContext
+_sun_management_VMManagementImpl_getVersion0: this 
     <javanative: 'sun/management/VMManagementImpl' name: 'getVersion0()Ljava/lang/String;'>
     ^ Java as_String: '1.2'.
 
     "Modified: / 03-11-2011 / 18:42:48 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
 !
 
-_sun_management_VMManagementImpl_initOptionalSupportFields: this _context: nativeContext
+_sun_management_VMManagementImpl_initOptionalSupportFields: this 
     <javanative: 'sun/management/VMManagementImpl' name: 'initOptionalSupportFields()V'>
     | cls |
     cls := this.
@@ -11839,7 +11839,7 @@
     "Modified: / 13-12-2011 / 14:35:03 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
 !
 
-_sun_management_VMManagementImpl_isThreadCpuTimeEnabled: this _context: nativeContext
+_sun_management_VMManagementImpl_isThreadCpuTimeEnabled: this 
 
     <javanative: 'sun/management/VMManagementImpl' name: 'isThreadCpuTimeEnabled()Z'>
 
@@ -11850,7 +11850,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - sun.misc'!
 
-_sun_misc_GC_maxObjectInspectionAge: this _context: nativeContext
+_sun_misc_GC_maxObjectInspectionAge: this 
 
     <javanative: 'sun/misc/GC' name: 'maxObjectInspectionAge()J'>
 
@@ -11879,7 +11879,7 @@
     "Modified: / 02-12-2011 / 21:56:15 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Signal_findSignal: this _:a1 _context: nativeContext
+_sun_misc_Signal_findSignal: this _:a1 
 
     <javanative: 'sun/misc/Signal' name: 'findSignal(Ljava/lang/String;)I'>
 
@@ -11899,7 +11899,7 @@
     "Created: / 11-12-2010 / 15:22:07 / Jan Kurs <kurs.jan@post.cz>"
 !
 
-_sun_misc_Signal_handle0: this _:a1 _: a2 _: a3 _context: nativeContext
+_sun_misc_Signal_handle0: this _:a1 _: a2 _: a3 
 
     <javanative: 'sun/misc/Signal' name: 'handle0(IJ)J'>
 
@@ -11909,7 +11909,7 @@
     "Created: / 11-12-2010 / 16:33:38 / Jan Kurs <kurs.jan@post.cz>"
 !
 
-_sun_misc_Unsafe_addressSize: this _context: nativeContext
+_sun_misc_Unsafe_addressSize: this 
 
     <javanative: 'sun/misc/Unsafe' name: 'addressSize()I'>
 
@@ -11918,7 +11918,7 @@
     "Modified: / 10-07-2012 / 01:19:07 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_allocateInstance: this _:a1 _context: nativeContext
+_sun_misc_Unsafe_allocateInstance: this _:a1 
 
     <javanative: 'sun/misc/Unsafe' name: 'allocateInstance(Ljava/lang/Class;)Ljava/lang/Object;'>
 
@@ -11936,7 +11936,7 @@
     "Created: / 05-02-2011 / 23:10:04 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_allocateMemory: this _:a1 _: a2 _context: nativeContext
+_sun_misc_Unsafe_allocateMemory: this _:a1 _: a2 
 
     <javanative: 'sun/misc/Unsafe' name: 'allocateMemory(J)J'>
 
@@ -11949,7 +11949,7 @@
     "Modified: / 07-12-2010 / 23:46:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_arrayBaseOffset: this _:a1 _context: nativeContext
+_sun_misc_Unsafe_arrayBaseOffset: this _:a1 
 
     <javanative: 'sun/misc/Unsafe' name: 'arrayBaseOffset(Ljava/lang/Class;)I'>
     "
@@ -11971,7 +11971,7 @@
     "Modified (comment): / 10-08-2011 / 01:22:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_arrayIndexScale: this _:a1 _context: nativeContext
+_sun_misc_Unsafe_arrayIndexScale: this _:a1 
 
     <javanative: 'sun/misc/Unsafe' name: 'arrayIndexScale(Ljava/lang/Class;)I'>
 
@@ -11994,17 +11994,17 @@
     "Modified: / 10-08-2011 / 01:26:02 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_compareAndSwapInt: this _:a1 _: a2 _: a3 _: a4 _: a5 _context: nativeContext
+_sun_misc_Unsafe_compareAndSwapInt: this _:a1 _: a2 _: a3 _: a4 _: a5 
 
     <javanative: 'sun/misc/Unsafe' name: 'compareAndSwapInt(Ljava/lang/Object;JII)Z'>
 
-    ^self _sun_misc_Unsafe_compareAndSwapObject: this _:a1 _: a2 _: a3 _: a4 _: a5 _context: nil
+    ^self _sun_misc_Unsafe_compareAndSwapObject: this _:a1 _: a2 _: a3 _: a4 _: a5 
 
     "Created: / 22-11-2010 / 18:40:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 30-01-2013 / 13:56:15 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_compareAndSwapLong: this _:a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 _context: nativeContext
+_sun_misc_Unsafe_compareAndSwapLong: this _:a1 _: a2 _: a3 _: a4 _: a5 _: a6 _: a7 
 
     <javanative: 'sun/misc/Unsafe' name: 'compareAndSwapLong(Ljava/lang/Object;JJJ)Z'>
 
@@ -12036,7 +12036,7 @@
     "Modified: / 18-10-2011 / 21:59:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_compareAndSwapObject: this _:a1 _: a2 _: a3 _: a4 _: a5 _context: nativeContext
+_sun_misc_Unsafe_compareAndSwapObject: this _:a1 _: a2 _: a3 _: a4 _: a5 
 
     <javanative: 'sun/misc/Unsafe' name: 'compareAndSwapInt(Ljava/lang/Object;JII)Z'>
 
@@ -12079,7 +12079,7 @@
     "Modified: / 03-09-2012 / 19:02:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_copyMemory: this _:a1 _: a2 _: a3 _: a4 _: a5 _: a6 _context: nativeContext
+_sun_misc_Unsafe_copyMemory: this _:a1 _: a2 _: a3 _: a4 _: a5 _: a6 
     "
     /**
      * Sets all bytes in a given block of memory to a copy of another
@@ -12101,7 +12101,7 @@
     "Modified (format): / 11-07-2012 / 10:25:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_defineClass: this _:a1 _: a2 _: a3 _: a4 _: a5 _: a6 _context: nativeContext
+_sun_misc_Unsafe_defineClass: this _:a1 _: a2 _: a3 _: a4 _: a5 _: a6 
 
     <javanative: 'sun/misc/Unsafe' name: 'defineClass(Ljava/lang/String;[BIILjava/lang/ClassLoader;Ljava/security/ProtectionDomain;)Ljava/lang/Class;'>
 
@@ -12134,7 +12134,7 @@
     "Created: / 05-02-2011 / 22:57:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_ensureClassInitialized: this _:a1 _context: nativeContext
+_sun_misc_Unsafe_ensureClassInitialized: this _:a1 
 
     <javanative: 'sun/misc/Unsafe' name: 'ensureClassInitialized(Ljava/lang/Class;)V'>
 
@@ -12151,7 +12151,7 @@
     "Modified: / 16-01-2013 / 19:52:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_freeMemory: this _:a1 _: a2 _context: nativeContext
+_sun_misc_Unsafe_freeMemory: this _:a1 _: a2 
 
     <javanative: 'sun/misc/Unsafe' name: 'freeMemory(J)V'>
 
@@ -12162,7 +12162,7 @@
     "Created: / 09-12-2010 / 17:56:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_getBoolean: this _:a1 _: a2 _: a3 _context: nativeContext
+_sun_misc_Unsafe_getBoolean: this _:a1 _: a2 _: a3 
 
     <javanative: 'sun/misc/Unsafe' name: 'getBoolean(Ljava/lang/Object;J)Z'>
 
@@ -12174,7 +12174,7 @@
     "Modified: / 19-11-2011 / 10:49:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_getByte: this _:a1 _: a2 _: a3 _context: nativeContext
+_sun_misc_Unsafe_getByte: this _:a1 _: a2 _: a3 
 
     <javanative: 'sun/misc/Unsafe' name: 'getByte(Ljava/lang/Object;J)B'>
     <javanative: 'sun/misc/Unsafe' name: 'getByte(J)B'>
@@ -12190,7 +12190,7 @@
     "Modified: / 20-01-2013 / 20:55:00 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_getByte: this _: a1 _: a2 _context: nativeContext
+_sun_misc_Unsafe_getByte: this _: a1 _: a2 
 
     <javanative: 'sun/misc/Unsafe' name: 'getByte(J)B'>
 
@@ -12202,7 +12202,7 @@
     "Modified (format): / 21-01-2013 / 17:35:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_getChar: this _:a1 _: a2 _: a3 _context: nativeContext
+_sun_misc_Unsafe_getChar: this _:a1 _: a2 _: a3 
 
     <javanative: 'sun/misc/Unsafe' name: 'getChar(Ljava/lang/Object;J)C'>
 
@@ -12214,7 +12214,7 @@
     "Modified: / 22-11-2011 / 14:51:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_getDouble: this _:a1 _: a2 _: a3 _context: nativeContext
+_sun_misc_Unsafe_getDouble: this _:a1 _: a2 _: a3 
 
     <javanative: 'sun/misc/Unsafe' name: 'getDouble(Ljava/lang/Object;J)D'>
 
@@ -12226,7 +12226,7 @@
     "Modified: / 10-05-2012 / 17:01:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_getFloat: this _:a1 _: a2 _: a3 _context: nativeContext
+_sun_misc_Unsafe_getFloat: this _:a1 _: a2 _: a3 
 
     <javanative: 'sun/misc/Unsafe' name: 'getFloat(Ljava/lang/Object;J)F'>
 
@@ -12238,7 +12238,7 @@
     "Modified: / 22-11-2011 / 14:53:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_getFloatVolatile: this _:a1 _: a2 _: a3 _context: nativeContext
+_sun_misc_Unsafe_getFloatVolatile: this _:a1 _: a2 _: a3 
 
     <javanative: 'sun/misc/Unsafe' name: 'getFloatVolatile(Ljava/lang/Object;J)F'>
 
@@ -12250,7 +12250,7 @@
     "Modified: / 10-05-2012 / 17:01:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_getInt: this _:a1 _: a2 _: a3 _context: nativeContext
+_sun_misc_Unsafe_getInt: this _:a1 _: a2 _: a3 
 
     <javanative: 'sun/misc/Unsafe' name: 'getInt(Ljava/lang/Object;J)I'>
     "
@@ -12267,7 +12267,7 @@
     "Modified: / 18-10-2011 / 20:33:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_getIntVolatile: this _:a1 _: a2 _: a3 _context: nativeContext
+_sun_misc_Unsafe_getIntVolatile: this _:a1 _: a2 _: a3 
 
     <javanative: 'sun/misc/Unsafe' name: 'getIntVolatile(Ljava/lang/Object;J)I'>
 
@@ -12279,7 +12279,7 @@
     "Modified: / 28-03-2012 / 15:03:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_getLong: this _:a1 _: a2 _: a3 _context: nativeContext
+_sun_misc_Unsafe_getLong: this _:a1 _: a2 _: a3 
 
     <javanative: 'sun/misc/Unsafe' name: 'getLong(Ljava/lang/Object;J)J'>
 
@@ -12291,7 +12291,7 @@
     "Modified: / 25-08-2012 / 11:15:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_getLongVolatile: this _:a1 _: a2 _: a3 _context: nativeContext
+_sun_misc_Unsafe_getLongVolatile: this _:a1 _: a2 _: a3 
 
     <javanative: 'sun/misc/Unsafe' name: 'getLongVolatile(Ljava/lang/Object;J)J'>
 
@@ -12303,7 +12303,7 @@
     "Modified: / 31-08-2011 / 23:57:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_getObject: this _:a1 _: a2 _: a3 _context: nativeContext
+_sun_misc_Unsafe_getObject: this _:a1 _: a2 _: a3 
 
     <javanative: 'sun/misc/Unsafe' name: 'getObject(Ljava/lang/Object;J)Ljava/lang/Object;'>
     "
@@ -12325,7 +12325,7 @@
     "Modified: / 03-09-2012 / 19:00:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_getObjectVolatile: this _:a1 _: a2 _: a3 _context: nativeContext
+_sun_misc_Unsafe_getObjectVolatile: this _:a1 _: a2 _: a3 
 
     <javanative: 'sun/misc/Unsafe' name: 'getObjectVolatile(Ljava/lang/Object;J)Ljava/lang/Object;'>
     "
@@ -12336,12 +12336,12 @@
     public native Object getObjectVolatile(Object o, long offset);
     "
 
-    ^self _sun_misc_Unsafe_getObject: this _:a1 _: a2 _: a3 _context: nil
+    ^self _sun_misc_Unsafe_getObject: this _:a1 _: a2 _: a3 
 
     "Modified: / 30-01-2013 / 13:56:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_getShort: this _:a1 _: a2 _: a3 _context: nativeContext
+_sun_misc_Unsafe_getShort: this _:a1 _: a2 _: a3 
 
     <javanative: 'sun/misc/Unsafe' name: 'getShort(Ljava/lang/Object;J)S'>
 
@@ -12353,7 +12353,7 @@
     "Modified: / 22-11-2011 / 14:52:35 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_getShortVolatile: this _:a1 _: a2 _: a3 _context: nativeContext
+_sun_misc_Unsafe_getShortVolatile: this _:a1 _: a2 _: a3 
 
     <javanative: 'sun/misc/Unsafe' name: 'getShortVolatile(Ljava/lang/Object;J)S'>
 
@@ -12365,7 +12365,7 @@
     "Modified: / 29-06-2012 / 19:05:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_objectFieldOffset: this _:a1 _context: nativeContext
+_sun_misc_Unsafe_objectFieldOffset: this _:a1 
 
     <javanative: 'sun/misc/Unsafe' name: 'objectFieldOffset(Ljava/lang/reflect/Field;)J'>
 
@@ -12377,7 +12377,7 @@
     "Created: / 22-11-2010 / 17:58:13 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_pageSize: this _context: nativeContext
+_sun_misc_Unsafe_pageSize: this 
 
     <javanative: 'sun/misc/Unsafe' name: 'pageSize()I'>
 
@@ -12386,7 +12386,7 @@
     "Modified: / 25-11-2011 / 19:24:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_park: this _:a1 _: a2 _: a3 _context: nativeContext
+_sun_misc_Unsafe_park: this _:a1 _: a2 _: a3 
 
     <javanative: 'sun/misc/Unsafe' name: 'park(ZJ)V'>
     "
@@ -12427,7 +12427,7 @@
     "Modified: / 16-08-2012 / 21:52:55 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_putBoolean: this _:a1 _: a2 _: a3 _: a4 _context: nativeContext
+_sun_misc_Unsafe_putBoolean: this _:a1 _: a2 _: a3 _: a4 
 
     <javanative: 'sun/misc/Unsafe' name: 'putBoolean(Ljava/lang/Object;JZ)V'>
 
@@ -12443,7 +12443,7 @@
     "Modified: / 27-10-2011 / 16:23:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_putByte: this _:a1 _: a2 _: a3 _: a4 _context: nativeContext
+_sun_misc_Unsafe_putByte: this _:a1 _: a2 _: a3 _: a4 
 
     <javanative: 'sun/misc/Unsafe' name: 'putByte(Ljava/lang/Object;JB)V'>
     <javanative: 'sun/misc/Unsafe' name: 'putByte(JB)V'>
@@ -12457,7 +12457,7 @@
     "Modified: / 30-01-2013 / 13:57:05 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_putChar: this _:a1 _: a2 _: a3 _: a4 _context: nativeContext
+_sun_misc_Unsafe_putChar: this _:a1 _: a2 _: a3 _: a4 
 
     <javanative: 'sun/misc/Unsafe' name: 'putChar(Ljava/lang/Object;JC)V'>
 
@@ -12471,7 +12471,7 @@
     "Modified: / 22-11-2011 / 14:52:07 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_putDouble: this _:a1 _: a2 _: a3 _: a4 _: a5 _context: nativeContext
+_sun_misc_Unsafe_putDouble: this _:a1 _: a2 _: a3 _: a4 _: a5 
 
     <javanative: 'sun/misc/Unsafe' name: 'putDouble(Ljava/lang/Object;JD)V'>
     <javanative: 'sun/misc/Unsafe' name: 'putDouble(JD)V'>
@@ -12487,7 +12487,7 @@
     "Modified: / 30-01-2013 / 13:57:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_putFloat: this _:a1 _: a2 _: a3 _: a4 _context: nativeContext
+_sun_misc_Unsafe_putFloat: this _:a1 _: a2 _: a3 _: a4 
 
     <javanative: 'sun/misc/Unsafe' name: 'putFloat(Ljava/lang/Object;JF)V'>
 
@@ -12501,7 +12501,7 @@
     "Modified: / 22-11-2011 / 14:53:51 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_putInt: this _:a1 _: a2 _: a3 _: a4 _context: nativeContext
+_sun_misc_Unsafe_putInt: this _:a1 _: a2 _: a3 _: a4 
 
     <javanative: 'sun/misc/Unsafe' name: 'putInt(Ljava/lang/Object;JI)V'>
     "
@@ -12538,7 +12538,7 @@
     "Modified: / 30-08-2011 / 15:48:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_putLong: this _:a1 _: a2 _: a3 _: a4 _: a5 _context: nativeContext
+_sun_misc_Unsafe_putLong: this _:a1 _: a2 _: a3 _: a4 _: a5 
 
     <javanative: 'sun/misc/Unsafe' name: 'putDouble(Ljava/lang/Object;JJ)V'>
 
@@ -12555,7 +12555,7 @@
     "Modified: / 20-01-2013 / 20:53:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_putLong: this _:a1 _: a2 _: a3 _: a4 _context: nativeContext
+_sun_misc_Unsafe_putLong: this _:a1 _: a2 _: a3 _: a4 
 
     <javanative: 'sun/misc/Unsafe' name: 'putLong(JJ)V'>
 
@@ -12570,7 +12570,7 @@
     "Modified: / 20-01-2013 / 20:53:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_putObject: this _:a1 _: a2 _: a3 _: a4 _context: nativeContext
+_sun_misc_Unsafe_putObject: this _:a1 _: a2 _: a3 _: a4 
 
     <javanative: 'sun/misc/Unsafe' name: 'putObject(Ljava/lang/Object;JLjava/lang/Object;)V'>
 
@@ -12601,16 +12601,16 @@
     "Modified: / 03-09-2012 / 18:59:22 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_putObjectVolatile: this _:a1 _: a2 _: a3 _: a4 _context: nativeContext
+_sun_misc_Unsafe_putObjectVolatile: this _:a1 _: a2 _: a3 _: a4 
 
     <javanative: 'sun/misc/Unsafe' name: 'putObjectVolatile(Ljava/lang/Object;JLjava/lang/Object;)V'>
 
-    ^self _sun_misc_Unsafe_putObject: this _:a1 _: a2 _: a3 _: a4 _context: nil
+    ^self _sun_misc_Unsafe_putObject: this _:a1 _: a2 _: a3 _: a4 
 
     "Modified: / 30-01-2013 / 14:16:19 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_putOrderedObject: this _:a1 _: a2 _: a3 _: a4 _context: nativeContext
+_sun_misc_Unsafe_putOrderedObject: this _:a1 _: a2 _: a3 _: a4 
 
     <javanative: 'sun/misc/Unsafe' name: 'putOrderedObject(Ljava/lang/Object;JLjava/lang/Object;)V'>
 
@@ -12624,12 +12624,12 @@
      */
     "
 
-    ^ self _sun_misc_Unsafe_putObject: this _:a1 _: a2 _: a3 _: a4 _context: nil
+    ^ self _sun_misc_Unsafe_putObject: this _:a1 _: a2 _: a3 _: a4 
 
     "Modified: / 30-01-2013 / 14:16:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_putShort: this _:a1 _: a2 _: a3 _: a4 _context: nativeContext
+_sun_misc_Unsafe_putShort: this _:a1 _: a2 _: a3 _: a4 
 
     <javanative: 'sun/misc/Unsafe' name: 'putShort(Ljava/lang/Object;JS)V'>
 
@@ -12643,7 +12643,7 @@
     "Modified: / 22-11-2011 / 14:52:51 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_registerNatives: this _context: nativeContext
+_sun_misc_Unsafe_registerNatives: this 
 
     <javanative: 'sun/misc/Unsafe' name: 'registerNatives()V'>
 
@@ -12653,7 +12653,7 @@
     "Created: / 25-10-2010 / 16:14:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_setMemory: this _:a1 _: a2 _: a3 _: a4 _: a5 _context: nativeContext
+_sun_misc_Unsafe_setMemory: this _:a1 _: a2 _: a3 _: a4 _: a5 
 
     <javanative: 'sun/misc/Unsafe' name: 'setMemory(JJB)V'>
 
@@ -12667,7 +12667,7 @@
     "Modified (format): / 11-07-2012 / 10:29:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_staticFieldBase: this _:a1 _context: nativeContext
+_sun_misc_Unsafe_staticFieldBase: this _:a1 
 
     <javanative: 'sun/misc/Unsafe' name: 'staticFieldBase(Ljava/lang/reflect/Field;)Ljava/lang/Object;'>
     "
@@ -12691,7 +12691,7 @@
     "Modified: / 17-08-2011 / 09:42:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_staticFieldOffset: this _:a1 _context: nativeContext
+_sun_misc_Unsafe_staticFieldOffset: this _:a1 
 
     <javanative: 'sun/misc/Unsafe' name: 'staticFieldOffset(Ljava/lang/reflect/Field;)J'>
 
@@ -12702,7 +12702,7 @@
     "Modified: / 17-08-2011 / 09:12:17 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_Unsafe_unpark: this _:a1 _context: nativeContext
+_sun_misc_Unsafe_unpark: this _:a1 
 
     <javanative: 'sun/misc/Unsafe' name: 'unpark(Ljava/lang/Object;)V'>
     "
@@ -12732,7 +12732,7 @@
     "Modified: / 16-01-2013 / 19:54:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_misc_VM_initialize: this _context: nativeContext
+_sun_misc_VM_initialize: this 
 
     <javanative: 'sun/misc/VM' name: 'initialize()V'>
 
@@ -12744,7 +12744,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - sun.nio.ch'!
 
-_sun_nio_ch_FileChannelImpl_initIDs: this _context: nativeContext
+_sun_nio_ch_FileChannelImpl_initIDs: this 
 
     <javanative: 'sun/nio/ch/FileChannelImpl' name: 'initIDs()J'>
 
@@ -12753,14 +12753,14 @@
     "Modified: / 10-07-2012 / 01:08:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_nio_ch_FileChannelImpl_map0: this _:a1 _: a2 _: a3 _: a4 _: a5 _context: nativeContext
+_sun_nio_ch_FileChannelImpl_map0: this _:a1 _: a2 _: a3 _: a4 _: a5 
 
     <javanative: 'sun/nio/ch/FileChannelImpl' name: 'map0(IJJ)J'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_nio_ch_FileChannelImpl_position0: this _:a1 _: a2 _: a3 _context: nativeContext
+_sun_nio_ch_FileChannelImpl_position0: this _:a1 _: a2 _: a3 
 
     <javanative: 'sun/nio/ch/FileChannelImpl' name: 'position0(Ljava/io/FileDescriptor;J)J'>
 
@@ -12780,7 +12780,7 @@
     "Modified: / 10-07-2012 / 01:30:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_nio_ch_FileChannelImpl_size0: this _:a1 _context: nativeContext
+_sun_nio_ch_FileChannelImpl_size0: this _:a1 
 
     <javanative: 'sun/nio/ch/FileChannelImpl' name: 'size0(Ljava/io/FileDescriptor;)J'>
 
@@ -12797,7 +12797,7 @@
     "Modified: / 10-07-2012 / 01:28:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_nio_ch_FileChannelImpl_truncate0: this _:a1 _: a2 _: a3 _context: nativeContext
+_sun_nio_ch_FileChannelImpl_truncate0: this _:a1 _: a2 _: a3 
 
     <javanative: 'sun/nio/ch/FileChannelImpl' name: 'truncate0(Ljava/io/FileDescriptor;J)I'>
 
@@ -12816,7 +12816,7 @@
     "Modified: / 10-07-2012 / 01:02:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_nio_ch_FileDispatcher_init: this _context: nativeContext
+_sun_nio_ch_FileDispatcher_init: this 
 
     <javanative: 'sun/nio/ch/FileDispatcher' name: 'init()V'>
 
@@ -12825,7 +12825,7 @@
     "Modified: / 06-07-2012 / 22:35:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_nio_ch_FileDispatcher_preClose0: this _:a1 _context: nativeContext
+_sun_nio_ch_FileDispatcher_preClose0: this _:a1 
 
     <javanative: 'sun/nio/ch/FileDispatcher' name: 'preClose0(Ljava/io/FileDescriptor;)V'>
 
@@ -12834,7 +12834,7 @@
     "Modified: / 10-07-2012 / 00:47:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_nio_ch_FileDispatcher_read0: this _:a1 _: a2 _: a3 _: a4 _context: nativeContext
+_sun_nio_ch_FileDispatcher_read0: this _:a1 _: a2 _: a3 _: a4 
 
     <javanative: 'sun/nio/ch/FileDispatcher' name: 'read0(Ljava/io/FileDescriptor;JI)I'>
 
@@ -12858,7 +12858,7 @@
     "Modified (comment): / 11-07-2012 / 10:38:55 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_nio_ch_FileDispatcher_write0: this _:a1 _: a2 _: a3 _: a4 _context: nativeContext
+_sun_nio_ch_FileDispatcher_write0: this _:a1 _: a2 _: a3 _: a4 
 
     <javanative: 'sun/nio/ch/FileDispatcher' name: 'write0(Ljava/io/FileDescriptor;JI)I'>
 
@@ -12881,7 +12881,7 @@
     "Modified: / 11-07-2012 / 10:38:50 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_nio_ch_IOUtil_initIDs: this _context: nativeContext
+_sun_nio_ch_IOUtil_initIDs: this 
 
     <javanative: 'sun/nio/ch/IOUtil' name: 'initIDs()V'>
 
@@ -12890,14 +12890,14 @@
     "Modified: / 06-07-2012 / 22:10:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_nio_ch_IOUtil_initPipe: this _:a1 _: a2 _context: nativeContext
+_sun_nio_ch_IOUtil_initPipe: this _:a1 _: a2 
 
     <javanative: 'sun/nio/ch/IOUtil' name: 'initPipe([IZ)V'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_nio_ch_NativeThread_current: this _context: nativeContext
+_sun_nio_ch_NativeThread_current: this 
 
     <javanative: 'sun/nio/ch/NativeThread' name: 'current()J'>
 
@@ -12906,7 +12906,7 @@
     "Modified: / 06-07-2012 / 22:39:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_nio_ch_NativeThread_init: this _context: nativeContext
+_sun_nio_ch_NativeThread_init: this 
 
     <javanative: 'sun/nio/ch/NativeThread' name: 'init()V'>
 
@@ -12915,7 +12915,7 @@
     "Modified: / 06-07-2012 / 22:38:22 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_nio_ch_Net_initIDs: this _context: nativeContext
+_sun_nio_ch_Net_initIDs: this 
 
     <javanative: 'sun/nio/ch/Net' name: 'initIDs()V'>
 
@@ -12924,14 +12924,14 @@
     "Modified: / 10-05-2012 / 17:00:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_nio_ch_Net_socket0: this _:a1 _: a2 _context: nativeContext
+_sun_nio_ch_Net_socket0: this _:a1 _: a2 
 
     <javanative: 'sun/nio/ch/Net' name: 'socket0(ZZ)I'>
 
     ^ JavaVM unimplementedNativeMethodSignal raise
 !
 
-_sun_nio_ch_ServerSocketChannelImpl_initIDs: this _context: nativeContext
+_sun_nio_ch_ServerSocketChannelImpl_initIDs: this 
 
     <javanative: 'sun/nio/ch/ServerSocketChannelImpl' name: 'initIDs()V'>
 
@@ -12942,7 +12942,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - sun.reflect'!
 
-_sun_reflect_ConstantPool_getDoubleAt0: this _:a1 _: a2 _context: nativeContext
+_sun_reflect_ConstantPool_getDoubleAt0: this _:a1 _: a2 
 
     <javanative: 'sun/reflect/ConstantPool' name: 'getDoubleAt0(Ljava/lang/Object;I)D'>
 
@@ -12959,7 +12959,7 @@
     "Modified: / 30-01-2013 / 13:58:22 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_reflect_ConstantPool_getIntAt0: this _:a1 _: a2 _context: nativeContext
+_sun_reflect_ConstantPool_getIntAt0: this _:a1 _: a2 
 
     <javanative: 'sun/reflect/ConstantPool' name: 'getIntAt0(Ljava/lang/Object;I)I'>
 
@@ -12975,7 +12975,7 @@
     "Modified: / 30-01-2013 / 13:58:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_reflect_ConstantPool_getLongAt0: this _:a1 _: a2 _context: nativeContext
+_sun_reflect_ConstantPool_getLongAt0: this _:a1 _: a2 
 
     <javanative: 'sun/reflect/ConstantPool' name: 'getLongAt0(Ljava/lang/Object;I)J'>
 
@@ -12991,7 +12991,7 @@
     "Modified: / 30-01-2013 / 13:59:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_reflect_ConstantPool_getUTF8At0: this _:a1 _: a2 _context: nativeContext
+_sun_reflect_ConstantPool_getUTF8At0: this _:a1 _: a2 
 
     <javanative: 'sun/reflect/ConstantPool' name: 'getUTF8At0(Ljava/lang/Object;I)Ljava/lang/String;'>
 
@@ -13008,7 +13008,7 @@
     "Modified: / 30-01-2013 / 13:59:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_reflect_NativeConstructorAccessorImpl_newInstance0: this _:a1 _: a2 _context: nativeContext
+_sun_reflect_NativeConstructorAccessorImpl_newInstance0: this _:a1 _: a2 
 
     <javanative: 'sun/reflect/NativeConstructorAccessorImpl' name: 'newInstance0(Ljava/lang/reflect/Constructor;[Ljava/lang/Object;)Ljava/lang/Object;'>
 
@@ -13028,7 +13028,7 @@
     "Modified: / 30-01-2013 / 14:16:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_reflect_NativeMethodAccessorImpl_invoke0: this _:a1 _: a2 _: a3 _context: nativeContext
+_sun_reflect_NativeMethodAccessorImpl_invoke0: this _:a1 _: a2 _: a3 
 
     <javanative: 'sun/reflect/NativeMethodAccessorImpl' name: 'invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;'>
     "
@@ -13048,7 +13048,7 @@
     "Modified: / 30-01-2013 / 14:16:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_reflect_Reflection_getCallerClass: this _:a1 _context: nativeContext
+_sun_reflect_Reflection_getCallerClass: this _:a1 
 
     <javanative: 'sun/reflect/Reflection' name: 'getCallerClass(I)Ljava/lang/Class;'>
     "
@@ -13091,7 +13091,7 @@
     "Modified: / 30-01-2013 / 14:12:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-_sun_reflect_Reflection_getClassAccessFlags: this _:a1 _context: nativeContext
+_sun_reflect_Reflection_getClassAccessFlags: this _:a1 
 
     <javanative: 'sun/reflect/Reflection' name: 'getClassAccessFlags(Ljava/lang/Class;)I'>
 
@@ -13111,7 +13111,7 @@
 
 !JavaNativeMethodImpl_OpenJDK6 class methodsFor:'native - sun.security.provider'!
 
-_sun_security_provider_NativeSeedGenerator_nativeGenerateSeed: this _:a1 _context: nativeContext
+_sun_security_provider_NativeSeedGenerator_nativeGenerateSeed: this _:a1 
 
     <javanative: 'sun/security/provider/NativeSeedGenerator' name: 'nativeGenerateSeed([B)Z'>
 
--- a/JavaVM.st	Wed Jan 30 14:24:21 2013 +0000
+++ b/JavaVM.st	Wed Jan 30 14:47:53 2013 +0000
@@ -4657,7 +4657,7 @@
 _java_lang_System_arraycopy: nativeContext
     "Forward here as optimized code delegates to  JavaVM"
 
-    ^ NativeMethodsImplementation _java_lang_System_arraycopy: nativeContext receiver _:(nativeContext argAt:1) _: (nativeContext argAt:2) _: (nativeContext argAt:3) _: (nativeContext argAt:4) _: (nativeContext argAt:5) _context: nativeContext
+    ^ NativeMethodsImplementation _java_lang_System_arraycopy: nativeContext receiver _:(nativeContext argAt:1) _: (nativeContext argAt:2) _: (nativeContext argAt:3) _: (nativeContext argAt:4) _: (nativeContext argAt:5) 
 
     "Modified: / 21-01-2013 / 09:18:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !