mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2025-01-24 15:24:51 -08:00
ClassGenerator.prepare: handle IsInstanceInstruction case
This commit is contained in:
parent
a5ba6f247e
commit
c7309c06d0
|
@ -177,6 +177,11 @@ public class ClassGenerator {
|
||||||
addType(ValueType.object(insn.getType()));
|
addType(ValueType.object(insn.getType()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void visit(IsInstanceInstruction insn) {
|
||||||
|
addType(insn.getType());
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void visit(ConstructMultiArrayInstruction insn) {
|
public void visit(ConstructMultiArrayInstruction insn) {
|
||||||
ValueType type = insn.getItemType();
|
ValueType type = insn.getItemType();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user