Package org.teavm.model.instructions
Class ConstructArrayInstruction
- java.lang.Object
-
- org.teavm.model.Instruction
-
- org.teavm.model.instructions.ConstructArrayInstruction
-
public class ConstructArrayInstruction extends Instruction
-
-
Constructor Summary
Constructors Constructor Description ConstructArrayInstruction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidacceptVisitor(InstructionVisitor visitor)ValueTypegetItemType()VariablegetReceiver()VariablegetSize()voidsetItemType(ValueType itemType)voidsetReceiver(Variable receiver)voidsetSize(Variable size)-
Methods inherited from class org.teavm.model.Instruction
delete, getBasicBlock, getLocation, getNext, getPrevious, getProgram, insertNext, insertNextAll, insertPrevious, insertPreviousAll, replace, setLocation
-
-
-
-
Method Detail
-
getSize
public Variable getSize()
-
setSize
public void setSize(Variable size)
-
getItemType
public ValueType getItemType()
-
setItemType
public void setItemType(ValueType itemType)
-
getReceiver
public Variable getReceiver()
-
setReceiver
public void setReceiver(Variable receiver)
-
acceptVisitor
public void acceptVisitor(InstructionVisitor visitor)
- Specified by:
acceptVisitorin classInstruction
-
-