Package org.teavm.model.instructions
Class BoundCheckInstruction
- java.lang.Object
-
- org.teavm.model.Instruction
-
- org.teavm.model.instructions.BoundCheckInstruction
-
public class BoundCheckInstruction extends Instruction
-
-
Constructor Summary
Constructors Constructor Description BoundCheckInstruction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidacceptVisitor(InstructionVisitor visitor)VariablegetArray()VariablegetIndex()VariablegetReceiver()booleanisLower()voidsetArray(Variable array)voidsetIndex(Variable index)voidsetLower(boolean lower)voidsetReceiver(Variable receiver)-
Methods inherited from class org.teavm.model.Instruction
delete, getBasicBlock, getLocation, getNext, getPrevious, getProgram, insertNext, insertNextAll, insertPrevious, insertPreviousAll, replace, setLocation
-
-
-
-
Method Detail
-
getReceiver
public Variable getReceiver()
-
setReceiver
public void setReceiver(Variable receiver)
-
getIndex
public Variable getIndex()
-
setIndex
public void setIndex(Variable index)
-
getArray
public Variable getArray()
-
setArray
public void setArray(Variable array)
-
isLower
public boolean isLower()
-
setLower
public void setLower(boolean lower)
-
acceptVisitor
public void acceptVisitor(InstructionVisitor visitor)
- Specified by:
acceptVisitorin classInstruction
-
-