All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.codemodder.ast.ForInitDeclaration Maven / Gradle / Ivy

package io.codemodder.ast;

import com.github.javaparser.ast.Node;
import com.github.javaparser.ast.body.VariableDeclarator;
import com.github.javaparser.ast.expr.VariableDeclarationExpr;
import com.github.javaparser.ast.stmt.ForStmt;
import java.util.Objects;

/**
 * Holds the nodes in the AST that represents a variable declaration in a for statement init
 * expression. See Java Language
 * Specification - Section 14.14.14 for more details.
 */
public final class ForInitDeclaration extends LocalVariableDeclaration {

  private final ForStmt stmt;

  public ForInitDeclaration(ForStmt stmt, VariableDeclarationExpr vde, VariableDeclarator vd) {
    this.stmt = Objects.requireNonNull(stmt);
    this.vde = Objects.requireNonNull(vde);
    this.vd = Objects.requireNonNull(vd);
    this.scope = null;
  }

  /** Returns the {@link ForStmt} {@link Node} that holds the declaration. */
  @Override
  public ForStmt getStatement() {
    return stmt;
  }

  @Override
  protected LocalScope findScope() {
    return LocalScope.fromForDeclaration(stmt, vd);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy