Package org.eolang.opeo.ast
Class StoreArray
- java.lang.Object
-
- org.eolang.opeo.ast.StoreArray
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eolang.opeo.ast.AstNode
AstNode.Empty
-
-
Constructor Summary
Constructors Constructor Description StoreArray(List<org.eolang.jeo.representation.xmir.XmlNode> children, Parser parser)
Constructor.StoreArray(org.eolang.jeo.representation.xmir.XmlNode root, Parser parser)
Constructor.StoreArray(AstNode array, AstNode index, AstNode value)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<AstNode>
opcodes()
Bytecode instructions.Iterable<org.xembly.Directive>
toXmir()
Convert node to XMIR.org.objectweb.asm.Type
type()
Node type.
-
-
-
Constructor Detail
-
StoreArray
public StoreArray(org.eolang.jeo.representation.xmir.XmlNode root, Parser parser)
Constructor.- Parameters:
root
- Xmir representation of a store array element.parser
- Parser that will be used to parse the nodes of the store array element.
-
StoreArray
public StoreArray(List<org.eolang.jeo.representation.xmir.XmlNode> children, Parser parser)
Constructor.- Parameters:
children
- Children nodes that represent an array, an index and a value.parser
- Parser that will be used to parse the children nodes.
-
-