diff -r 4a623c4ec05f -r 3843bb5881e8 src/JavaByteCodePreresolver.st --- a/src/JavaByteCodePreresolver.st Tue Feb 28 20:34:52 2012 +0000 +++ b/src/JavaByteCodePreresolver.st Tue Feb 28 22:29:54 2012 +0000 @@ -56,96 +56,109 @@ !JavaByteCodePreresolver methodsFor:'instructions'! anewarray - (constantPool at: self fetchIndex2) resolve: true. + (constantPool at: self fetchIndex2) resolve: false"do not call ". "Modified: / 09-02-2012 / 23:06:29 / mh " "Modified: / 23-02-2012 / 17:40:02 / Marcel Hlopko " + "Modified (comment): / 28-02-2012 / 22:14:00 / Jan Vrany " ! checkcast - (constantPool at: self fetchIndex2) resolve: true. + (constantPool at: self fetchIndex2) resolve: false"do not call ". "Modified: / 09-02-2012 / 23:06:34 / mh " "Modified: / 23-02-2012 / 17:40:09 / Marcel Hlopko " + "Modified (comment): / 28-02-2012 / 22:13:56 / Jan Vrany " ! getfield - (constantPool at: self fetchIndex2) resolve: true. + (constantPool at: self fetchIndex2) resolve: false"do not call ". "Modified: / 09-02-2012 / 23:06:45 / mh " "Modified: / 23-02-2012 / 17:40:13 / Marcel Hlopko " + "Modified (comment): / 28-02-2012 / 22:13:52 / Jan Vrany " ! getstatic - (constantPool at: self fetchIndex2) resolve: true. + (constantPool at: self fetchIndex2) resolve: false"do not call ". "Modified: / 09-02-2012 / 23:06:49 / mh " "Modified: / 23-02-2012 / 17:40:17 / Marcel Hlopko " + "Modified: / 28-02-2012 / 22:13:39 / Jan Vrany " ! instanceof - (constantPool at: self fetchIndex2) resolve: true. + (constantPool at: self fetchIndex2) resolve: false"do not call ". "Modified: / 09-02-2012 / 23:06:55 / mh " "Modified: / 23-02-2012 / 17:40:20 / Marcel Hlopko " + "Modified: / 28-02-2012 / 22:14:06 / Jan Vrany " ! invinterface - (constantPool at: self fetchIndex2) resolve: true. + (constantPool at: self fetchIndex2) resolve: false"do not call ". self fetchBytes2. "Modified: / 09-02-2012 / 23:07:03 / mh " "Modified: / 23-02-2012 / 17:40:25 / Marcel Hlopko " + "Modified: / 28-02-2012 / 22:14:10 / Jan Vrany " ! invnonvirt - (constantPool at: self fetchIndex2) resolve: true. + (constantPool at: self fetchIndex2) resolve: false"do not call ". "Modified: / 09-02-2012 / 23:07:10 / mh " "Modified: / 23-02-2012 / 17:40:28 / Marcel Hlopko " + "Modified: / 28-02-2012 / 22:14:16 / Jan Vrany " ! invstatic - (constantPool at: self fetchIndex2) resolve: true. + (constantPool at: self fetchIndex2) resolve: false"do not call ". "Modified: / 09-02-2012 / 23:07:15 / mh " "Modified: / 23-02-2012 / 17:40:35 / Marcel Hlopko " + "Modified: / 28-02-2012 / 22:14:19 / Jan Vrany " ! invvirt - (constantPool at: self fetchIndex2) resolve: true. + (constantPool at: self fetchIndex2) resolve: false"do not call ". "Modified: / 09-02-2012 / 23:07:20 / mh " "Modified: / 23-02-2012 / 17:40:39 / Marcel Hlopko " + "Modified: / 28-02-2012 / 22:14:23 / Jan Vrany " ! multianewarray - (constantPool at: self fetchIndex2) resolve: true. + (constantPool at: self fetchIndex2) resolve: false"do not call ". self fetchByte. "Modified: / 09-02-2012 / 23:07:24 / mh " "Modified: / 23-02-2012 / 17:40:42 / Marcel Hlopko " + "Modified: / 28-02-2012 / 22:14:30 / Jan Vrany " ! new - (constantPool at: self fetchIndex2) resolve: true. + (constantPool at: self fetchIndex2) resolve: false"do not call ". "Modified: / 09-02-2012 / 23:07:29 / mh " "Modified: / 23-02-2012 / 17:40:48 / Marcel Hlopko " + "Modified: / 28-02-2012 / 22:14:34 / Jan Vrany " ! putfield - (constantPool at: self fetchIndex2) resolve: true. + (constantPool at: self fetchIndex2) resolve: false"do not call ". "Modified: / 09-02-2012 / 23:07:33 / mh " "Modified: / 23-02-2012 / 17:40:51 / Marcel Hlopko " + "Modified: / 28-02-2012 / 22:14:37 / Jan Vrany " ! putstatic - (constantPool at: self fetchIndex2) resolve: true. + (constantPool at: self fetchIndex2) resolve: false"do not call ". "Modified: / 09-02-2012 / 23:07:38 / mh " "Modified: / 23-02-2012 / 17:40:54 / Marcel Hlopko " + "Modified: / 28-02-2012 / 22:14:42 / Jan Vrany " ! ! !JavaByteCodePreresolver methodsFor:'processing'!