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.Empty
-
-
Constructor Summary
Constructors Constructor Description StaticInvocation(String owner, String name, String descriptor, List<AstNode> arguments)Constructor.StaticInvocation(String owner, String name, String descriptor, AstNode... arguments)Constructor.StaticInvocation(org.eolang.jeo.representation.xmir.XmlNode node, List<AstNode> arguments)Constructor.StaticInvocation(org.eolang.jeo.representation.xmir.XmlNode node, AstNode... arguments)Constructor.StaticInvocation(org.eolang.jeo.representation.xmir.XmlNode node, Parser parser)Constructor.StaticInvocation(Attributes attributes, Owner owner, List<AstNode> arguments)Constructor.StaticInvocation(Attributes attributes, Owner owner, AstNode... arguments)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.Typetype()Node type.
-
-
-
Constructor Detail
-
StaticInvocation
public StaticInvocation(String owner, String name, String descriptor, AstNode... arguments)
Constructor.- Parameters:
owner- Owner class namename- Method namedescriptor- Method descriptorarguments- Arguments- Suppressed Checkstyle violations:
- ParameterNumberCheck (5 lines)
-
StaticInvocation
public StaticInvocation(String owner, String name, String descriptor, List<AstNode> arguments)
Constructor.- Parameters:
owner- Owner class namename- Method namedescriptor- Method descriptorarguments- Arguments- Suppressed Checkstyle violations:
- ParameterNumberCheck (5 lines)
-
StaticInvocation
public StaticInvocation(org.eolang.jeo.representation.xmir.XmlNode node, Parser parser)Constructor.- Parameters:
node- XML nodeparser- Parser that will be used to parse the child nodes of the invocation.
-
StaticInvocation
public StaticInvocation(org.eolang.jeo.representation.xmir.XmlNode node, List<AstNode> arguments)Constructor.- Parameters:
node- XML nodearguments- Arguments
-
StaticInvocation
public StaticInvocation(org.eolang.jeo.representation.xmir.XmlNode node, AstNode... arguments)Constructor.- Parameters:
node- XML nodearguments- Arguments
-
StaticInvocation
public StaticInvocation(Attributes attributes, Owner owner, AstNode... arguments)
Constructor.- Parameters:
attributes- Method attributesowner- Owner class namearguments- Arguments
-
StaticInvocation
public StaticInvocation(Attributes attributes, Owner owner, List<AstNode> arguments)
Constructor.- Parameters:
attributes- Method attributesowner- Owner class namearguments- Arguments
-
-