Package org.eolang.opeo
Class LabelInstruction
- java.lang.Object
-
- org.eolang.opeo.LabelInstruction
-
- All Implemented Interfaces:
Instruction
public final class LabelInstruction extends Object implements Instruction
Label instruction. This class mimics the bytecode instruction, although it is not an instruction.- Since:
- 0.1
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eolang.opeo.Instruction
Instruction.Nop
-
-
Field Summary
Fields Modifier and Type Field Description static int
LABEL_OPCODE
Opcode number to mimic the bytecode instruction.
-
Constructor Summary
Constructors Constructor Description LabelInstruction()
Constructor.LabelInstruction(String identifier)
Constructor.LabelInstruction(org.eolang.jeo.representation.xmir.XmlLabel xml)
Constructor.LabelInstruction(org.objectweb.asm.Label label)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
opcode()
Opcode number.Object
operand(int index)
Retrieve operand by position index.List<Object>
operands()
Full list of operands.
-
-
-
Field Detail
-
LABEL_OPCODE
public static final int LABEL_OPCODE
Opcode number to mimic the bytecode instruction. Should be higher than any number of the real instructions. See: instructions- See Also:
- Constant Field Values
-
-
Constructor Detail
-
LabelInstruction
public LabelInstruction()
Constructor. Creates a random label.
-
LabelInstruction
public LabelInstruction(org.eolang.jeo.representation.xmir.XmlLabel xml)
Constructor.- Parameters:
xml
- XML representation of label.
-
LabelInstruction
public LabelInstruction(org.objectweb.asm.Label label)
Constructor.- Parameters:
label
- Label.
-
LabelInstruction
public LabelInstruction(String identifier)
Constructor.- Parameters:
identifier
- Label identifier.
-
-
Method Detail
-
opcode
public int opcode()
Description copied from interface:Instruction
Opcode number.- Specified by:
opcode
in interfaceInstruction
- Returns:
- Opcode number.
-
operand
public Object operand(int index)
Description copied from interface:Instruction
Retrieve operand by position index.- Specified by:
operand
in interfaceInstruction
- Parameters:
index
- Operand index- Returns:
- Operand
-
operands
public List<Object> operands()
Description copied from interface:Instruction
Full list of operands.- Specified by:
operands
in interfaceInstruction
- Returns:
- Operands.
-
-