AS1/2 unresolved constant as §§ instruction

This commit is contained in:
Jindra Petřík
2015-07-08 06:05:30 +02:00
parent a047d893b7
commit ecb0649b81

View File

@@ -345,7 +345,7 @@ public class ActionPush extends Action {
}
if (o instanceof ConstantIndex) {
if ((constantPool == null) || (((ConstantIndex) o).index >= constantPool.size())) {
o = "CONSTANT" + ((ConstantIndex) o).index;
o = "§§constant" + ((ConstantIndex) o).index;
} else {
o = constantPool.get(((ConstantIndex) o).index);
}