Class LineAST

java.lang.Object
org.variantsync.boosting.parsing.AbstractAST
org.variantsync.boosting.parsing.LineAST
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
CAST

public class LineAST extends AbstractAST
Represents a node in the Abstract Syntax Tree (AST) that represents a line of code in a file. This class extends AbstractAST and provides functionality to visit the content of a file and create AST nodes for each line in the file.
See Also:
  • Constructor Details Link icon

    • LineAST Link icon

      public LineAST(String... fileTypes)
      Constructs a LineAST object with the specified file types.
      Parameters:
      fileTypes - the file types to be used for parsing
    • LineAST Link icon

      public LineAST(File rootFile, String... fileTypes)
      Constructs a LineAST object with the specified root file and file types.
      Parameters:
      rootFile - the root file to start parsing from
      fileTypes - the file types to be used for parsing
    • LineAST Link icon

      public LineAST(ASTNode root, CustomHashSet<ASTNode> astNodes, String... fileTypes)
      Constructs a LineAST object with the specified root node, AST nodes, and file types.
      Parameters:
      root - the root node of the AST
      astNodes - the set of AST nodes
      fileTypes - the file types to be used for parsing
  • Method Details Link icon

    • visitFileContent Link icon

      protected void 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.
      Specified by:
      visitFileContent in class AbstractAST
      Parameters:
      fileNode - The ASTNode representing the file being visited
      fileToVisit - The File object representing the file to be visited
      Throws:
      UncheckedIOException - If an IOException occurs while reading the file