Package org.eolang.opeo.ast
Class Add
- java.lang.Object
-
- org.eolang.opeo.ast.Add
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eolang.opeo.ast.AstNode
AstNode.Sequence
-
-
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
-
Add
public Add(AstNode left, AstNode right)
Constructor.- Parameters:
left
- Left operandright
- Right operand
-
Add
public Add(AstNode left, AstNode right, Attributes attributes)
Constructor.- Parameters:
left
- Left operandright
- Right operandattributes
- Attributes
-
-