fixed tests

This commit is contained in:
Jindra Petřík
2023-09-07 21:40:36 +02:00
parent 3f6223fe0f
commit 4402c0b5b7

View File

@@ -1746,6 +1746,8 @@ public class AVM2Code implements Cloneable {
vtype = ((GetSlotAVM2Item) assignment).slotType;
} else if ((assignment.value instanceof SimpleValue) && ((SimpleValue) assignment.value).isSimpleValue()) {
vtype = assignment.value.returnType();
} else if (assignment.value instanceof GetLexAVM2Item) {
vtype = assignment.value.returnType();
}
boolean isNull = false;