<p>-version 3.18
<ul>
-JIRA JASSIST-183, 189, 162.
+JIRA JASSIST-183, 184, 189, 162, 186, 190.
</ul>
<p>-version 3.17.1 on December 3, 2012
<ul>
- <li>JIRA JASSIST-177, 178, 182
+ <li>JIRA JASSIST-177, 178, 182.
</ul>
import java.util.ArrayList;
import javassist.ClassPool;
+import javassist.CtClass;
import javassist.NotFoundException;
import javassist.bytecode.*;
{
while (handler != null) {
TypedBlock tb = (TypedBlock)handler.body;
- if (tb.alreadySet())
+ if (tb.alreadySet()) {
mergeMap(tb, false);
+ if (tb.stackTop < 1)
+ throw new BadBytecode("bad catch clause: " + handler.typeIndex);
+
+ tb.stackTypes[0] = merge(toExceptionType(handler.typeIndex),
+ tb.stackTypes[0]);
+ }
else {
recordStackMap(tb, handler.typeIndex);
MapMaker maker = new MapMaker(this);
throws BadBytecode
{
TypeData[] tStackTypes = TypeData.make(stackTypes.length);
+ tStackTypes[0] = toExceptionType(exceptionType).join();
+ recordStackMap0(target, 1, tStackTypes);
+ }
+
+ private TypeData.ClassName toExceptionType(int exceptionType) {
String type;
if (exceptionType == 0) // for finally clauses
- type = "java.lang.Throwable";
+ type= "java.lang.Throwable";
else
type = cpool.getClassInfo(exceptionType);
- tStackTypes[0] = new TypeData.ClassName(type);
- recordStackMap0(target, 1, tStackTypes);
+ return new TypeData.ClassName(type);
}
private void recordStackMap0(TypedBlock target, int st, TypeData[] tStackTypes)
Object obj = make(cc.getName());
assertEquals(1, invoke(obj, "test"));
}
+
+ // JASSIST-190
+ public void testMultipleCatch() throws Exception {
+ CtClass cc = sloader.get("test4.MultiCatch");
+ CtMethod m1 = cc.getDeclaredMethod("m1");
+ m1.insertAfter("print();");
+ cc.writeFile();
+ Object obj = make(cc.getName());
+ assertEquals(12, invoke(obj, "test1"));
+ }
}
--- /dev/null
+package test4;
+
+public class JIRA186 {
+ public int test() {
+ return 1;
+ }
+}
--- /dev/null
+package test4;
+
+public class MultiCatch {
+ public void print() { System.out.println("MultiCatch"); }
+ public int test1() { return m1(1); }
+ public int m1(int i) {
+ // Java 7 syntax
+ try {
+ return foo(i);
+ }
+ catch (java.io.IOException | NullPointerException e) {
+ return e.getMessage().length();
+ }
+ }
+ public int foo(int i) throws java.io.IOException {
+ if (i < 0)
+ throw new java.io.IOException("negative");
+ else if (i < 10)
+ throw new NullPointerException("less than 10");
+ else
+ return i;
+ }
+}