Package org.eolang.opeo.ast
Class Substraction
- java.lang.Object
-
- org.eolang.opeo.ast.Substraction
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eolang.opeo.ast.AstNode
AstNode.Sequence
-
-
Constructor Summary
Constructors Constructor Description Substraction(AstNode left, AstNode right)
Constructor.Substraction(AstNode left, AstNode right, Attributes attributes)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<AstNode>
opcodes()
Bytecode instructions.String
print()
Print ast node and all it's children.Iterable<org.xembly.Directive>
toXmir()
Convert node to XMIR.
-
-
-
Constructor Detail
-
Substraction
public Substraction(AstNode left, AstNode right)
Constructor.- Parameters:
left
- Left operand.right
- Right operand.
-
Substraction
public Substraction(AstNode left, AstNode right, Attributes attributes)
Constructor.- Parameters:
left
- Left operand.right
- Right operand.attributes
- Attributes.
-
-