parent
cb01f89a40
commit
2c043ec9d7
|
@ -2706,6 +2706,7 @@ class MethodWriter extends MethodVisitor {
|
||||||
l = l.successor;
|
l = l.successor;
|
||||||
}
|
}
|
||||||
// Update the offsets in the uninitialized types
|
// Update the offsets in the uninitialized types
|
||||||
|
if (cw.typeTable != null) {
|
||||||
for (i = 0; i < cw.typeTable.length; ++i) {
|
for (i = 0; i < cw.typeTable.length; ++i) {
|
||||||
Item item = cw.typeTable[i];
|
Item item = cw.typeTable[i];
|
||||||
if (item != null && item.type == ClassWriter.TYPE_UNINIT) {
|
if (item != null && item.type == ClassWriter.TYPE_UNINIT) {
|
||||||
|
@ -2713,6 +2714,7 @@ class MethodWriter extends MethodVisitor {
|
||||||
item.intVal);
|
item.intVal);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
// The stack map frames are not serialized yet, so we don't need
|
// The stack map frames are not serialized yet, so we don't need
|
||||||
// to update them. They will be serialized in visitMaxs.
|
// to update them. They will be serialized in visitMaxs.
|
||||||
} else if (frameCount > 0) {
|
} else if (frameCount > 0) {
|
||||||
|
|
Loading…
Reference in New Issue