Uses of Interface
org.eolang.opeo.ast.AstNode
-
Packages that use AstNode Package Description org.eolang.opeo.ast Provides the classes necessary to create decompilation output. -
-
Uses of AstNode in org.eolang.opeo.ast
Classes in org.eolang.opeo.ast that implement AstNode Modifier and Type Class Description class
Constructor
Constructor output node.class
Invocation
Invocation output node.class
Literal
Literal output.class
Opcode
Opcode output node.class
Root
Root node.Methods in org.eolang.opeo.ast that return types with arguments of type AstNode Modifier and Type Method Description Optional<AstNode>
Root. child(String identifier)
Find child by ID.Methods in org.eolang.opeo.ast with parameters of type AstNode Modifier and Type Method Description void
Root. append(AstNode node)
Append child.void
Root. disconnect(AstNode node)
Disconnect child.Constructors in org.eolang.opeo.ast with parameters of type AstNode Constructor Description Constructor(String type, AstNode... arguments)
Constructor.Invocation(AstNode source, String method, List<AstNode> arguments)
Constructor.Invocation(AstNode source, String method, AstNode... args)
Constructor.Constructor parameters in org.eolang.opeo.ast with type arguments of type AstNode Constructor Description Constructor(String type, String reference, List<AstNode> arguments)
Constructor.Invocation(AstNode source, String method, List<AstNode> arguments)
Constructor.
-