Uses of Class
org.variantsync.boosting.datastructure.ASTNode
Packages that use ASTNode
Package
Description
-
Uses of ASTNode in org.variantsync.boosting.datastructure
Methods in org.variantsync.boosting.datastructure that return ASTNodeModifier and TypeMethodDescriptionASTNode.getParent()
ASTNode.getProductEquivalent()
Gets the equivalent node of this node.Methods in org.variantsync.boosting.datastructure that return types with arguments of type ASTNodeModifier and TypeMethodDescriptionAssociation.getAstNodes()
Returns the set of AST nodes contained in this EccoSet.ASTNode.getChildren()
Returns a set of this node's child nodes.Merges the Abstract Syntax Tree (AST) of the given product into the of this main AST (main tree) and returns the set of all nodes in the resulting main tree corresponding to the nodes of this AST.Methods in org.variantsync.boosting.datastructure with parameters of type ASTNodeModifier and TypeMethodDescriptionvoid
MainTree.getProductPositions
(ASTNode node) Retrieves the set of ProductPositions associated with the given ASTNode.boolean
Checks whether the given ASTNode is similar to this one.void
Sets the parent of this ASTNode in the AST.void
ASTNode.setProductEquivalent
(ASTNode productEquivalent) Sets the equivalent node of this node.Method parameters in org.variantsync.boosting.datastructure with type arguments of type ASTNodeModifier and TypeMethodDescriptionvoid
Association.removeNodes
(CustomHashSet<ASTNode> toRemove) Removes the specified nodes from the current set of AST nodes.Constructors in org.variantsync.boosting.datastructure with parameters of type ASTNodeModifierConstructorDescriptionASTNode
(ASTNode parent, String code, Position position, ASTNode.NODE_TYPE type, org.logicng.formulas.Formula mapping) Constructs a new ASTNode with the specified parameters. -
Uses of ASTNode in org.variantsync.boosting.parsing
Fields in org.variantsync.boosting.parsing declared as ASTNodeFields in org.variantsync.boosting.parsing with type parameters of type ASTNodeMethods in org.variantsync.boosting.parsing that return ASTNodeModifier and TypeMethodDescriptionAbstractAST.getRoot()
Returns the root node of the Abstract Syntax Tree (AST).Methods in org.variantsync.boosting.parsing that return types with arguments of type ASTNodeModifier and TypeMethodDescriptionAbstractAST.collectAstNodes()
Collects all nodes (except the root node) of the Abstract Syntax Tree (AST) in one set to simplify their access.AbstractAST.getAstNodes()
Returns a set of all AST nodes in the tree.Methods in org.variantsync.boosting.parsing with parameters of type ASTNodeModifier and TypeMethodDescriptionvoid
JavaVisitor.defaultAction
(com.github.javaparser.ast.Node n, ASTNode parent) void
void
void
void
void
void
void
void
void
void
void
void
void
void
void
protected abstract void
AbstractAST.visitFileContent
(ASTNode fileNode, File fileToVisit) This method is responsible for visiting the content of a file represented by the given ASTNode and File object.protected void
JavaAST.visitFileContent
(ASTNode fileNode, File fileToVisit) protected void
LineAST.visitFileContent
(ASTNode fileNode, File fileToVisit) This method is used to visit the content of a file and create an AST node for each line in the file.Constructors in org.variantsync.boosting.parsing with parameters of type ASTNodeModifierConstructorDescriptionAbstractAST
(ASTNode root, CustomHashSet<ASTNode> astNodes, String... fileTypes) Constructs an AbstractAST with a specified root node, set of AST nodes, and optional filtering based on file types.CAST
(ASTNode root, CustomHashSet<ASTNode> astNodes) Constructs a new CAST object with the specified root node and AST nodes, and default file types ".c" and ".h".JavaAST
(ASTNode root, CustomHashSet<ASTNode> astNodes) LineAST
(ASTNode root, CustomHashSet<ASTNode> astNodes, String... fileTypes) Constructs a LineAST object with the specified root node, AST nodes, and file types.Constructor parameters in org.variantsync.boosting.parsing with type arguments of type ASTNodeModifierConstructorDescriptionAbstractAST
(ASTNode root, CustomHashSet<ASTNode> astNodes, String... fileTypes) Constructs an AbstractAST with a specified root node, set of AST nodes, and optional filtering based on file types.CAST
(ASTNode root, CustomHashSet<ASTNode> astNodes) Constructs a new CAST object with the specified root node and AST nodes, and default file types ".c" and ".h".JavaAST
(ASTNode root, CustomHashSet<ASTNode> astNodes) LineAST
(ASTNode root, CustomHashSet<ASTNode> astNodes, String... fileTypes) Constructs a LineAST object with the specified root node, AST nodes, and file types. -
Uses of ASTNode in org.variantsync.boosting.product
Methods in org.variantsync.boosting.product that return ASTNodeModifier and TypeMethodDescriptionVariant.getNodeFromPosition
(Position position) Returns the ASTNode at the given position in the variant AST or, if it has already been merged into the main tree, returns the corresponding node in the main tree.Methods in org.variantsync.boosting.product that return types with arguments of type ASTNodeModifier and TypeMethodDescriptionVariant.getAstNodesMainTree()
Returns the set of AST nodes in the main tree.Method parameters in org.variantsync.boosting.product with type arguments of type ASTNodeModifier and TypeMethodDescriptionvoid
Variant.setAstNodesMainTree
(CustomHashSet<ASTNode> astNodesMainTree) Sets the AST nodes for the main tree.Constructor parameters in org.variantsync.boosting.product with type arguments of type ASTNodeModifierConstructorDescriptionVariant
(String name, CustomHashSet<ASTNode> astNodesMainTree, AbstractAST productAST, CustomHashSet<Feature> features) Constructs a new Variant object with the given parameters.