Package org.eolang.opeo.ast
Class Invocation
- java.lang.Object
-
- org.eolang.opeo.ast.Invocation
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eolang.opeo.ast.AstNode
AstNode.Empty
-
-
Constructor Summary
Constructors Constructor Description Invocation(org.eolang.jeo.representation.xmir.XmlNode node, Parser parser)
Constructor.Invocation(AstNode source, String method, List<AstNode> arguments)
Constructor.Invocation(AstNode source, String method, List<AstNode> arguments, String descriptor)
Constructor.Invocation(AstNode source, String method, AstNode... args)
Constructor.Invocation(AstNode source, Attributes attributes, List<AstNode> arguments)
Constructor.Invocation(AstNode source, Attributes attributes, AstNode... args)
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
-
Invocation
public Invocation(org.eolang.jeo.representation.xmir.XmlNode node, Parser parser)
Constructor.- Parameters:
node
- XML nodeparser
- Parser for child nodes.
-
Invocation
public Invocation(AstNode source, String method, AstNode... args)
Constructor.- Parameters:
source
- Source or target on which the invocation is performedmethod
- Method nameargs
- Arguments
-
Invocation
public Invocation(AstNode source, Attributes attributes, AstNode... args)
Constructor.- Parameters:
source
- Source or target on which the invocation is performedattributes
- Method attributesargs
- Arguments
-
Invocation
public Invocation(AstNode source, String method, List<AstNode> arguments)
Constructor.- Parameters:
source
- Source or target on which the invocation is performedmethod
- Method namearguments
- Arguments
-
Invocation
public Invocation(AstNode source, String method, List<AstNode> arguments, String descriptor)
Constructor.- Parameters:
source
- Source or target on which the invocation is performedmethod
- Method namearguments
- Argumentsdescriptor
- Descriptor- Suppressed Checkstyle violations:
- ParameterNumberCheck (5 lines)
-
Invocation
public Invocation(AstNode source, Attributes attributes, List<AstNode> arguments)
Constructor.- Parameters:
source
- Source or target on which the invocation is performedattributes
- Method attributesarguments
- Arguments
-
-