Package org.teavm.model.instructions
Class DoubleConstantInstruction
- java.lang.Object
-
- org.teavm.model.Instruction
-
- org.teavm.model.instructions.DoubleConstantInstruction
-
public class DoubleConstantInstruction extends Instruction
-
-
Constructor Summary
Constructors Constructor Description DoubleConstantInstruction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidacceptVisitor(InstructionVisitor visitor)doublegetConstant()VariablegetReceiver()voidsetConstant(double constant)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
-
getConstant
public double getConstant()
-
setConstant
public void setConstant(double constant)
-
getReceiver
public Variable getReceiver()
-
setReceiver
public void setReceiver(Variable receiver)
-
acceptVisitor
public void acceptVisitor(InstructionVisitor visitor)
- Specified by:
acceptVisitorin classInstruction
-
-