Package org.eolang.opeo.ast
Class StaticInvocation
- java.lang.Object
-
- org.eolang.opeo.ast.StaticInvocation
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eolang.opeo.ast.AstNode
AstNode.Sequence
-
-
Constructor Summary
Constructors Constructor Description StaticInvocation(String owner, String name, String descriptor, List<AstNode> arguments)
Constructor.StaticInvocation(Attributes attributes, List<AstNode> arguments)
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
-
StaticInvocation
public StaticInvocation(String owner, String name, String descriptor, List<AstNode> arguments)
Constructor.- Parameters:
owner
- Owner class namename
- Method namedescriptor
- Method descriptorarguments
- Arguments
-
StaticInvocation
public StaticInvocation(Attributes attributes, List<AstNode> arguments)
Constructor.- Parameters:
attributes
- Attributesarguments
- Arguments
-
-