Package org.eolang.opeo.ast
Class InterfaceInvocation
- java.lang.Object
-
- org.eolang.opeo.ast.InterfaceInvocation
-
-
Constructor Summary
Constructors Constructor Description InterfaceInvocation(org.eolang.jeo.representation.xmir.XmlNode node, Function<org.eolang.jeo.representation.xmir.XmlNode,AstNode> parser)
Constructor.InterfaceInvocation(AstNode source, Attributes attributes, List<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
-
InterfaceInvocation
public InterfaceInvocation(org.eolang.jeo.representation.xmir.XmlNode node, Function<org.eolang.jeo.representation.xmir.XmlNode,AstNode> parser)
Constructor.- Parameters:
node
- XML node.parser
- Parser, which can extract AstNode from XmlNode.
-
InterfaceInvocation
public InterfaceInvocation(AstNode source, Attributes attributes, List<AstNode> args)
Constructor.- Parameters:
source
- Source or target on which the invocation is performedattributes
- Method attributes.args
- Arguments of the method.
-
-