mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2025-01-08 07:54:11 -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()));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void visit(IsInstanceInstruction insn) {
|
||||
addType(insn.getType());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void visit(ConstructMultiArrayInstruction insn) {
|
||||
ValueType type = insn.getItemType();
|
||||
|
|
Loading…
Reference in New Issue
Block a user