org.extendj.ast.CompilationUnit Maven / Gradle / Ivy
/* This file was generated with JastAdd2 (http://jastadd.org) version 2.3.0 */
package org.extendj.ast;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.ArrayList;
import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.*;
import java.util.zip.*;
import java.io.*;
import java.io.BufferedInputStream;
import java.io.DataInputStream;
import org.jastadd.util.PrettyPrintable;
import org.jastadd.util.PrettyPrinter;
import java.io.FileNotFoundException;
import java.io.InputStream;
import org.jastadd.util.*;
import java.io.File;
import java.io.IOException;
import java.util.Set;
import beaver.*;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentSkipListMap;
/**
* A compilation unit.
* Each compilation unit represents an input source file.
*
* See JLS 6 §7.3.
* @ast node
* @declaredat /home/jesper/git/extendj/java4/grammar/Java.ast:45
* @astdecl CompilationUnit : ASTNode ::= ImportDecl* TypeDecl*;
* @production CompilationUnit : {@link ASTNode} ::= <PackageDecl:String> {@link ImportDecl}* {@link TypeDecl}*;
*/
public class CompilationUnit extends ASTNode implements Cloneable {
/**
* @aspect Java4PrettyPrint
* @declaredat /home/jesper/git/extendj/java4/frontend/PrettyPrint.jadd:213
*/
public void prettyPrint(PrettyPrinter out) {
if (hasPackageDecl()) {
out.print("package ");
out.print(getPackageDecl());
out.print(";");
out.println();
}
if (!out.isNewLine()) {
out.println();
}
out.print(getImportDeclList());
if (!out.isNewLine()) {
out.println();
}
out.println();
out.join(getTypeDecls(), new PrettyPrinter.Joiner() {
@Override
public void printSeparator(PrettyPrinter out) {
out.println();
out.println();
}
});
}
/**
* @aspect ErrorCheck
* @declaredat /home/jesper/git/extendj/java4/frontend/ErrorCheck.jrag:100
*/
public Collection parseErrors() {
return parseErrors;
}
/**
* @aspect ErrorCheck
* @declaredat /home/jesper/git/extendj/java4/frontend/ErrorCheck.jrag:104
*/
public void addParseError(Problem msg) {
parseErrors.add(msg);
}
/**
* @aspect ErrorCheck
* @declaredat /home/jesper/git/extendj/java4/frontend/ErrorCheck.jrag:108
*/
protected Collection parseErrors = new ArrayList();
/**
* @aspect ClassPath
* @declaredat /home/jesper/git/extendj/java4/frontend/ClassPath.jrag:520
*/
private ClassSource classSource = ClassSource.NONE;
/**
* @aspect ClassPath
* @declaredat /home/jesper/git/extendj/java4/frontend/ClassPath.jrag:522
*/
private boolean fromSource = false;
/**
* @aspect ClassPath
* @declaredat /home/jesper/git/extendj/java4/frontend/ClassPath.jrag:524
*/
public void setClassSource(ClassSource source) {
this.classSource = source;
}
/**
* @aspect ClassPath
* @declaredat /home/jesper/git/extendj/java4/frontend/ClassPath.jrag:528
*/
public ClassSource getClassSource() {
return classSource;
}
/**
* @aspect ClassPath
* @declaredat /home/jesper/git/extendj/java4/frontend/ClassPath.jrag:532
*/
public void setFromSource(boolean value) {
this.fromSource = value;
}
/**
* @aspect GenerateClassfile
* @declaredat /home/jesper/git/extendj/java4/backend/GenerateClassfile.jrag:40
*/
public void generateClassfile() {
if (fromSource()) {
for (int i = 0; i < getNumTypeDecl(); i++) {
getTypeDecl(i).generateClassfile();
}
}
}
/**
* @declaredat ASTNode:1
*/
public CompilationUnit() {
super();
}
/**
* Initializes the child array to the correct size.
* Initializes List and Opt nta children.
* @apilevel internal
* @ast method
* @declaredat ASTNode:10
*/
public void init$Children() {
children = new ASTNode[2];
setChild(new List(), 0);
setChild(new List(), 1);
}
/**
* @declaredat ASTNode:15
*/
@ASTNodeAnnotation.Constructor(
name = {"PackageDecl", "ImportDecl", "TypeDecl"},
type = {"String", "List", "List"},
kind = {"Token", "List", "List"}
)
public CompilationUnit(String p0, List p1, List p2) {
setPackageDecl(p0);
setChild(p1, 0);
setChild(p2, 1);
}
/**
* @declaredat ASTNode:25
*/
public CompilationUnit(beaver.Symbol p0, List p1, List p2) {
setPackageDecl(p0);
setChild(p1, 0);
setChild(p2, 1);
}
/** @apilevel low-level
* @declaredat ASTNode:31
*/
protected int numChildren() {
return 2;
}
/**
* @apilevel internal
* @declaredat ASTNode:37
*/
public boolean mayHaveRewrite() {
return false;
}
/** @apilevel internal
* @declaredat ASTNode:41
*/
public void flushAttrCache() {
super.flushAttrCache();
packageName_reset();
destinationPath_reset();
lookupType_String_reset();
}
/** @apilevel internal
* @declaredat ASTNode:48
*/
public void flushCollectionCache() {
super.flushCollectionCache();
CompilationUnit_problems_computed = null;
CompilationUnit_problems_value = null;
contributorMap_CompilationUnit_problems = null;
contributorMap_TypeDecl_accessors = null;
contributorMap_TypeDecl_nestedTypes = null;
}
/** @apilevel internal
* @declaredat ASTNode:57
*/
public CompilationUnit clone() throws CloneNotSupportedException {
CompilationUnit node = (CompilationUnit) super.clone();
return node;
}
/** @apilevel internal
* @declaredat ASTNode:62
*/
public CompilationUnit copy() {
try {
CompilationUnit node = (CompilationUnit) clone();
node.parent = null;
if (children != null) {
node.children = (ASTNode[]) children.clone();
}
return node;
} catch (CloneNotSupportedException e) {
throw new Error("Error: clone not supported for " + getClass().getName());
}
}
/**
* Create a deep copy of the AST subtree at this node.
* The copy is dangling, i.e. has no parent.
* @return dangling copy of the subtree at this node
* @apilevel low-level
* @deprecated Please use treeCopy or treeCopyNoTransform instead
* @declaredat ASTNode:81
*/
@Deprecated
public CompilationUnit fullCopy() {
return treeCopyNoTransform();
}
/**
* Create a deep copy of the AST subtree at this node.
* The copy is dangling, i.e. has no parent.
* @return dangling copy of the subtree at this node
* @apilevel low-level
* @declaredat ASTNode:91
*/
public CompilationUnit treeCopyNoTransform() {
CompilationUnit tree = (CompilationUnit) copy();
if (children != null) {
for (int i = 0; i < children.length; ++i) {
ASTNode child = (ASTNode) children[i];
if (child != null) {
child = child.treeCopyNoTransform();
tree.setChild(child, i);
}
}
}
return tree;
}
/**
* Create a deep copy of the AST subtree at this node.
* The subtree of this node is traversed to trigger rewrites before copy.
* The copy is dangling, i.e. has no parent.
* @return dangling copy of the subtree at this node
* @apilevel low-level
* @declaredat ASTNode:111
*/
public CompilationUnit treeCopy() {
CompilationUnit tree = (CompilationUnit) copy();
if (children != null) {
for (int i = 0; i < children.length; ++i) {
ASTNode child = (ASTNode) getChild(i);
if (child != null) {
child = child.treeCopy();
tree.setChild(child, i);
}
}
}
return tree;
}
/** @apilevel internal
* @declaredat ASTNode:125
*/
protected boolean is$Equal(ASTNode node) {
return super.is$Equal(node) && (tokenString_PackageDecl == ((CompilationUnit) node).tokenString_PackageDecl);
}
/**
* Replaces the lexeme PackageDecl.
* @param value The new value for the lexeme PackageDecl.
* @apilevel high-level
*/
public void setPackageDecl(String value) {
tokenString_PackageDecl = value;
}
/** @apilevel internal
*/
protected String tokenString_PackageDecl;
/**
*/
public int PackageDeclstart;
/**
*/
public int PackageDeclend;
/**
* JastAdd-internal setter for lexeme PackageDecl using the Beaver parser.
* @param symbol Symbol containing the new value for the lexeme PackageDecl
* @apilevel internal
*/
public void setPackageDecl(beaver.Symbol symbol) {
if (symbol.value != null && !(symbol.value instanceof String))
throw new UnsupportedOperationException("setPackageDecl is only valid for String lexemes");
tokenString_PackageDecl = (String)symbol.value;
PackageDeclstart = symbol.getStart();
PackageDeclend = symbol.getEnd();
}
/**
* Retrieves the value for the lexeme PackageDecl.
* @return The value for the lexeme PackageDecl.
* @apilevel high-level
*/
@ASTNodeAnnotation.Token(name="PackageDecl")
public String getPackageDecl() {
return tokenString_PackageDecl != null ? tokenString_PackageDecl : "";
}
/**
* Replaces the ImportDecl list.
* @param list The new list node to be used as the ImportDecl list.
* @apilevel high-level
*/
public void setImportDeclList(List list) {
setChild(list, 0);
}
/**
* Retrieves the number of children in the ImportDecl list.
* @return Number of children in the ImportDecl list.
* @apilevel high-level
*/
public int getNumImportDecl() {
return getImportDeclList().getNumChild();
}
/**
* Retrieves the number of children in the ImportDecl list.
* Calling this method will not trigger rewrites.
* @return Number of children in the ImportDecl list.
* @apilevel low-level
*/
public int getNumImportDeclNoTransform() {
return getImportDeclListNoTransform().getNumChildNoTransform();
}
/**
* Retrieves the element at index {@code i} in the ImportDecl list.
* @param i Index of the element to return.
* @return The element at position {@code i} in the ImportDecl list.
* @apilevel high-level
*/
public ImportDecl getImportDecl(int i) {
return (ImportDecl) getImportDeclList().getChild(i);
}
/**
* Check whether the ImportDecl list has any children.
* @return {@code true} if it has at least one child, {@code false} otherwise.
* @apilevel high-level
*/
public boolean hasImportDecl() {
return getImportDeclList().getNumChild() != 0;
}
/**
* Append an element to the ImportDecl list.
* @param node The element to append to the ImportDecl list.
* @apilevel high-level
*/
public void addImportDecl(ImportDecl node) {
List list = (parent == null) ? getImportDeclListNoTransform() : getImportDeclList();
list.addChild(node);
}
/** @apilevel low-level
*/
public void addImportDeclNoTransform(ImportDecl node) {
List list = getImportDeclListNoTransform();
list.addChild(node);
}
/**
* Replaces the ImportDecl list element at index {@code i} with the new node {@code node}.
* @param node The new node to replace the old list element.
* @param i The list index of the node to be replaced.
* @apilevel high-level
*/
public void setImportDecl(ImportDecl node, int i) {
List list = getImportDeclList();
list.setChild(node, i);
}
/**
* Retrieves the ImportDecl list.
* @return The node representing the ImportDecl list.
* @apilevel high-level
*/
@ASTNodeAnnotation.ListChild(name="ImportDecl")
public List getImportDeclList() {
List list = (List) getChild(0);
return list;
}
/**
* Retrieves the ImportDecl list.
* This method does not invoke AST transformations.
* @return The node representing the ImportDecl list.
* @apilevel low-level
*/
public List getImportDeclListNoTransform() {
return (List) getChildNoTransform(0);
}
/**
* @return the element at index {@code i} in the ImportDecl list without
* triggering rewrites.
*/
public ImportDecl getImportDeclNoTransform(int i) {
return (ImportDecl) getImportDeclListNoTransform().getChildNoTransform(i);
}
/**
* Retrieves the ImportDecl list.
* @return The node representing the ImportDecl list.
* @apilevel high-level
*/
public List getImportDecls() {
return getImportDeclList();
}
/**
* Retrieves the ImportDecl list.
* This method does not invoke AST transformations.
* @return The node representing the ImportDecl list.
* @apilevel low-level
*/
public List getImportDeclsNoTransform() {
return getImportDeclListNoTransform();
}
/**
* Replaces the TypeDecl list.
* @param list The new list node to be used as the TypeDecl list.
* @apilevel high-level
*/
public void setTypeDeclList(List list) {
setChild(list, 1);
}
/**
* Retrieves the number of children in the TypeDecl list.
* @return Number of children in the TypeDecl list.
* @apilevel high-level
*/
public int getNumTypeDecl() {
return getTypeDeclList().getNumChild();
}
/**
* Retrieves the number of children in the TypeDecl list.
* Calling this method will not trigger rewrites.
* @return Number of children in the TypeDecl list.
* @apilevel low-level
*/
public int getNumTypeDeclNoTransform() {
return getTypeDeclListNoTransform().getNumChildNoTransform();
}
/**
* Retrieves the element at index {@code i} in the TypeDecl list.
* @param i Index of the element to return.
* @return The element at position {@code i} in the TypeDecl list.
* @apilevel high-level
*/
public TypeDecl getTypeDecl(int i) {
return (TypeDecl) getTypeDeclList().getChild(i);
}
/**
* Check whether the TypeDecl list has any children.
* @return {@code true} if it has at least one child, {@code false} otherwise.
* @apilevel high-level
*/
public boolean hasTypeDecl() {
return getTypeDeclList().getNumChild() != 0;
}
/**
* Append an element to the TypeDecl list.
* @param node The element to append to the TypeDecl list.
* @apilevel high-level
*/
public void addTypeDecl(TypeDecl node) {
List list = (parent == null) ? getTypeDeclListNoTransform() : getTypeDeclList();
list.addChild(node);
}
/** @apilevel low-level
*/
public void addTypeDeclNoTransform(TypeDecl node) {
List list = getTypeDeclListNoTransform();
list.addChild(node);
}
/**
* Replaces the TypeDecl list element at index {@code i} with the new node {@code node}.
* @param node The new node to replace the old list element.
* @param i The list index of the node to be replaced.
* @apilevel high-level
*/
public void setTypeDecl(TypeDecl node, int i) {
List list = getTypeDeclList();
list.setChild(node, i);
}
/**
* Retrieves the TypeDecl list.
* @return The node representing the TypeDecl list.
* @apilevel high-level
*/
@ASTNodeAnnotation.ListChild(name="TypeDecl")
public List getTypeDeclList() {
List list = (List) getChild(1);
return list;
}
/**
* Retrieves the TypeDecl list.
* This method does not invoke AST transformations.
* @return The node representing the TypeDecl list.
* @apilevel low-level
*/
public List getTypeDeclListNoTransform() {
return (List) getChildNoTransform(1);
}
/**
* @return the element at index {@code i} in the TypeDecl list without
* triggering rewrites.
*/
public TypeDecl getTypeDeclNoTransform(int i) {
return (TypeDecl) getTypeDeclListNoTransform().getChildNoTransform(i);
}
/**
* Retrieves the TypeDecl list.
* @return The node representing the TypeDecl list.
* @apilevel high-level
*/
public List getTypeDecls() {
return getTypeDeclList();
}
/**
* Retrieves the TypeDecl list.
* This method does not invoke AST transformations.
* @return The node representing the TypeDecl list.
* @apilevel low-level
*/
public List getTypeDeclsNoTransform() {
return getTypeDeclListNoTransform();
}
/**
* @aspect
* @declaredat /home/jesper/git/extendj/java4/frontend/ErrorCheck.jrag:283
*/
/** @apilevel internal */
protected java.util.Map> contributorMap_CompilationUnit_problems = null;
/** @apilevel internal */
protected void survey_CompilationUnit_problems() {
if (contributorMap_CompilationUnit_problems == null) {
contributorMap_CompilationUnit_problems = new java.util.IdentityHashMap>();
collect_contributors_CompilationUnit_problems(this, contributorMap_CompilationUnit_problems);
}
}
/**
* @aspect
* @declaredat /home/jesper/git/extendj/java4/backend/GenerateClassfile.jrag:346
*/
/** @apilevel internal */
protected java.util.Map> contributorMap_TypeDecl_accessors = null;
/** @apilevel internal */
protected void survey_TypeDecl_accessors() {
if (contributorMap_TypeDecl_accessors == null) {
contributorMap_TypeDecl_accessors = new java.util.IdentityHashMap>();
collect_contributors_TypeDecl_accessors(this, contributorMap_TypeDecl_accessors);
}
}
/**
* @aspect
* @declaredat /home/jesper/git/extendj/java4/backend/InnerClasses.jrag:155
*/
/** @apilevel internal */
protected java.util.Map> contributorMap_TypeDecl_nestedTypes = null;
/** @apilevel internal */
protected void survey_TypeDecl_nestedTypes() {
if (contributorMap_TypeDecl_nestedTypes == null) {
contributorMap_TypeDecl_nestedTypes = new java.util.IdentityHashMap>();
collect_contributors_TypeDecl_nestedTypes(this, contributorMap_TypeDecl_nestedTypes);
}
}
/** Searches for a type with the given simple name in this compilation unit.
* @attribute syn
* @aspect TypeScopePropagation
* @declaredat /home/jesper/git/extendj/java4/frontend/LookupType.jrag:446
*/
@ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN)
@ASTNodeAnnotation.Source(aspect="TypeScopePropagation", declaredAt="/home/jesper/git/extendj/java4/frontend/LookupType.jrag:446")
public SimpleSet localLookupType(String name) {
{
for (int i = 0; i < getNumTypeDecl(); i++) {
if (getTypeDecl(i).name().equals(name)) {
return getTypeDecl(i);
}
}
return emptySet();
}
}
/**
* @attribute syn
* @aspect TypeScopePropagation
* @declaredat /home/jesper/git/extendj/java4/frontend/LookupType.jrag:455
*/
@ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN)
@ASTNodeAnnotation.Source(aspect="TypeScopePropagation", declaredAt="/home/jesper/git/extendj/java4/frontend/LookupType.jrag:455")
public SimpleSet importedTypes(String name) {
{
SimpleSet result = emptySet();
for (int i = 0; i < getNumImportDecl(); i++) {
if (!getImportDecl(i).isOnDemand()) {
for (TypeDecl type : getImportDecl(i).importedTypes(name)) {
result = result.add(type);
}
}
}
return result;
}
}
/**
* @attribute syn
* @aspect TypeScopePropagation
* @declaredat /home/jesper/git/extendj/java4/frontend/LookupType.jrag:467
*/
@ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN)
@ASTNodeAnnotation.Source(aspect="TypeScopePropagation", declaredAt="/home/jesper/git/extendj/java4/frontend/LookupType.jrag:467")
public SimpleSet importedTypesOnDemand(String name) {
{
SimpleSet result = emptySet();
for (int i = 0; i < getNumImportDecl(); i++) {
if (getImportDecl(i).isOnDemand()) {
for (TypeDecl type : getImportDecl(i).importedTypes(name)) {
result = result.add(type);
}
}
}
return result;
}
}
/**
* @attribute syn
* @aspect NameCheck
* @declaredat /home/jesper/git/extendj/java4/frontend/NameCheck.jrag:68
*/
@ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN)
@ASTNodeAnnotation.Source(aspect="NameCheck", declaredAt="/home/jesper/git/extendj/java4/frontend/NameCheck.jrag:68")
public Collection nameProblems() {
{
Collection problems = new LinkedList();
for (int i = 0; i < getNumImportDecl(); i++) {
ImportDecl decl = getImportDecl(i);
if (!decl.isOnDemand()) {
for (TypeDecl importedType : decl.importedTypes()) {
for (TypeDecl local : localLookupType(importedType.name())) {
if (local != importedType) {
problems.add(errorf("imported type %s conflicts with visible type", decl.typeName()));
}
}
}
}
}
return problems;
}
}
/** @apilevel internal */
private void packageName_reset() {
packageName_computed = null;
packageName_value = null;
}
/** @apilevel internal */
protected ASTState.Cycle packageName_computed = null;
/** @apilevel internal */
protected String packageName_value;
/**
* @attribute syn
* @aspect TypeName
* @declaredat /home/jesper/git/extendj/java4/frontend/QualifiedNames.jrag:117
*/
@ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN)
@ASTNodeAnnotation.Source(aspect="TypeName", declaredAt="/home/jesper/git/extendj/java4/frontend/QualifiedNames.jrag:117")
public String packageName() {
ASTState state = state();
if (packageName_computed == ASTState.NON_CYCLE || packageName_computed == state().cycle()) {
return packageName_value;
}
packageName_value = packageName_compute();
if (state().inCircle()) {
packageName_computed = state().cycle();
} else {
packageName_computed = ASTState.NON_CYCLE;
}
return packageName_value;
}
/** @apilevel internal */
private String packageName_compute() {return getPackageDecl();}
/**
* @attribute syn
* @aspect PrettyPrintUtil
* @declaredat /home/jesper/git/extendj/java4/frontend/PrettyPrintUtil.jrag:264
*/
@ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN)
@ASTNodeAnnotation.Source(aspect="PrettyPrintUtil", declaredAt="/home/jesper/git/extendj/java4/frontend/PrettyPrintUtil.jrag:264")
public boolean hasPackageDecl() {
boolean hasPackageDecl_value = !getPackageDecl().isEmpty();
return hasPackageDecl_value;
}
/**
* @attribute syn
* @aspect ErrorCheck
* @declaredat /home/jesper/git/extendj/java4/frontend/ErrorCheck.jrag:285
*/
@ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN)
@ASTNodeAnnotation.Source(aspect="ErrorCheck", declaredAt="/home/jesper/git/extendj/java4/frontend/ErrorCheck.jrag:285")
public Collection errors() {
{
Collection errors = new LinkedList();
for (Problem problem : problems()) {
if (problem.severity() == Problem.Severity.ERROR) {
errors.add(problem);
}
}
return errors;
}
}
/**
* @attribute syn
* @aspect ErrorCheck
* @declaredat /home/jesper/git/extendj/java4/frontend/ErrorCheck.jrag:295
*/
@ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN)
@ASTNodeAnnotation.Source(aspect="ErrorCheck", declaredAt="/home/jesper/git/extendj/java4/frontend/ErrorCheck.jrag:295")
public Collection warnings() {
{
Collection warnings = new LinkedList();
for (Problem problem : problems()) {
if (problem.severity() == Problem.Severity.WARNING) {
warnings.add(problem);
}
}
return warnings;
}
}
/**
* @return The path to the source file, or the path to the file inside a Jar
* file.
* @attribute syn
* @aspect ClassPath
* @declaredat /home/jesper/git/extendj/java4/frontend/ClassPath.jrag:97
*/
@ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN)
@ASTNodeAnnotation.Source(aspect="ClassPath", declaredAt="/home/jesper/git/extendj/java4/frontend/ClassPath.jrag:97")
public String relativeName() {
String relativeName_value = getClassSource().relativeName();
return relativeName_value;
}
/**
* @return The path to the source file, or the enclosing Jar file.
* @attribute syn
* @aspect ClassPath
* @declaredat /home/jesper/git/extendj/java4/frontend/ClassPath.jrag:102
*/
@ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN)
@ASTNodeAnnotation.Source(aspect="ClassPath", declaredAt="/home/jesper/git/extendj/java4/frontend/ClassPath.jrag:102")
public String pathName() {
String pathName_value = getClassSource().pathName();
return pathName_value;
}
/**
* @return {@code true} if this compilation unit was parsed from source.
* @attribute syn
* @aspect ClassPath
* @declaredat /home/jesper/git/extendj/java4/frontend/ClassPath.jrag:107
*/
@ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN)
@ASTNodeAnnotation.Source(aspect="ClassPath", declaredAt="/home/jesper/git/extendj/java4/frontend/ClassPath.jrag:107")
public boolean fromSource() {
boolean fromSource_value = fromSource;
return fromSource_value;
}
/** @apilevel internal */
private void destinationPath_reset() {
destinationPath_computed = null;
destinationPath_value = null;
}
/** @apilevel internal */
protected ASTState.Cycle destinationPath_computed = null;
/** @apilevel internal */
protected String destinationPath_value;
/**
* Computes the path to the parent directory of the source file of this
* compilation unit.
*
* If the parent directory of the source file could not be computed
* the path to the working directory is returned.
*
* @return The path to the parent directory of the source file for this
* compilation unit, or "." if the path could not be computed.
* @attribute syn
* @aspect ConstantPoolNames
* @declaredat /home/jesper/git/extendj/java4/backend/ConstantPoolNames.jrag:165
*/
@ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN)
@ASTNodeAnnotation.Source(aspect="ConstantPoolNames", declaredAt="/home/jesper/git/extendj/java4/backend/ConstantPoolNames.jrag:165")
public String destinationPath() {
ASTState state = state();
if (destinationPath_computed == ASTState.NON_CYCLE || destinationPath_computed == state().cycle()) {
return destinationPath_value;
}
destinationPath_value = destinationPath_compute();
if (state().inCircle()) {
destinationPath_computed = state().cycle();
} else {
destinationPath_computed = ASTState.NON_CYCLE;
}
return destinationPath_value;
}
/** @apilevel internal */
private String destinationPath_compute() {
String parentPath = new File(pathName()).getParent();
if (parentPath == null) {
return ".";
} else {
return parentPath;
}
}
/**
* @attribute inh
* @aspect LookupFullyQualifiedTypes
* @declaredat /home/jesper/git/extendj/java4/frontend/LookupType.jrag:127
*/
@ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.INH)
@ASTNodeAnnotation.Source(aspect="LookupFullyQualifiedTypes", declaredAt="/home/jesper/git/extendj/java4/frontend/LookupType.jrag:127")
public TypeDecl lookupType(String packageName, String typeName) {
TypeDecl lookupType_String_String_value = getParent().Define_lookupType(this, null, packageName, typeName);
return lookupType_String_String_value;
}
/**
* @attribute inh
* @aspect TypeScopePropagation
* @declaredat /home/jesper/git/extendj/java4/frontend/LookupType.jrag:392
*/
@ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.INH)
@ASTNodeAnnotation.Source(aspect="TypeScopePropagation", declaredAt="/home/jesper/git/extendj/java4/frontend/LookupType.jrag:392")
public SimpleSet lookupType(String name) {
Object _parameters = name;
if (lookupType_String_computed == null) lookupType_String_computed = new java.util.HashMap(4);
if (lookupType_String_values == null) lookupType_String_values = new java.util.HashMap(4);
ASTState state = state();
if (lookupType_String_values.containsKey(_parameters)
&& lookupType_String_computed.containsKey(_parameters)
&& (lookupType_String_computed.get(_parameters) == ASTState.NON_CYCLE || lookupType_String_computed.get(_parameters) == state().cycle())) {
return (SimpleSet) lookupType_String_values.get(_parameters);
}
SimpleSet lookupType_String_value = getParent().Define_lookupType(this, null, name);
if (state().inCircle()) {
lookupType_String_values.put(_parameters, lookupType_String_value);
lookupType_String_computed.put(_parameters, state().cycle());
} else {
lookupType_String_values.put(_parameters, lookupType_String_value);
lookupType_String_computed.put(_parameters, ASTState.NON_CYCLE);
}
return lookupType_String_value;
}
/** @apilevel internal */
private void lookupType_String_reset() {
lookupType_String_computed = null;
lookupType_String_values = null;
}
/** @apilevel internal */
protected java.util.Map lookupType_String_values;
/** @apilevel internal */
protected java.util.Map lookupType_String_computed;
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/ResolveAmbiguousNames.jrag:539
* @apilevel internal
*/
public boolean Define_canResolve(ASTNode _callerNode, ASTNode _childNode) {
int childIndex = this.getIndexOfChild(_callerNode);
return true;
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/ResolveAmbiguousNames.jrag:539
* @apilevel internal
* @return {@code true} if this node has an equation for the inherited attribute canResolve
*/
protected boolean canDefine_canResolve(ASTNode _callerNode, ASTNode _childNode) {
return true;
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/LookupType.jrag:396
* @apilevel internal
*/
public SimpleSet Define_lookupType(ASTNode _callerNode, ASTNode _childNode, String name) {
if (_callerNode == getImportDeclListNoTransform()) {
// @declaredat /home/jesper/git/extendj/java4/frontend/LookupType.jrag:531
int childIndex = _callerNode.getIndexOfChild(_childNode);
return lookupType(name);
}
else {
int childIndex = this.getIndexOfChild(_callerNode);
{
// Locally declared types in the compilation unit.
SimpleSet result = localLookupType(name);
if (!result.isEmpty()) {
return result;
}
// Imported types.
result = importedTypes(name);
if (!result.isEmpty()) {
return result;
}
// Types in the same package.
TypeDecl pkgType = lookupType(packageName(), name);
if (pkgType.accessibleFromPackage(packageName())) {
return pkgType;
}
// Types imported on demand.
result = importedTypesOnDemand(name);
if (!result.isEmpty()) {
return result;
}
// Include primitive types.
TypeDecl primitiveType = lookupType(PRIMITIVE_PACKAGE_NAME, name);
if (!primitiveType.isUnknown()) {
return primitiveType;
}
// 7.5.5 Automatic Imports
TypeDecl defaultType = lookupType("java.lang", name);
if (defaultType.accessibleFromPackage(packageName())) {
return defaultType;
}
return lookupType(name);
}
}
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/LookupType.jrag:396
* @apilevel internal
* @return {@code true} if this node has an equation for the inherited attribute lookupType
*/
protected boolean canDefine_lookupType(ASTNode _callerNode, ASTNode _childNode, String name) {
return true;
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/NameCheck.jrag:50
* @apilevel internal
*/
public SimpleSet Define_allImportedTypes(ASTNode _callerNode, ASTNode _childNode, String name) {
if (_callerNode == getImportDeclListNoTransform()) {
// @declaredat /home/jesper/git/extendj/java4/frontend/NameCheck.jrag:52
int childIndex = _callerNode.getIndexOfChild(_childNode);
return importedTypes(name);
}
else {
return getParent().Define_allImportedTypes(this, _callerNode, name);
}
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/NameCheck.jrag:50
* @apilevel internal
* @return {@code true} if this node has an equation for the inherited attribute allImportedTypes
*/
protected boolean canDefine_allImportedTypes(ASTNode _callerNode, ASTNode _childNode, String name) {
return true;
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/TypeAnalysis.jrag:555
* @apilevel internal
*/
public TypeDecl Define_enclosingType(ASTNode _callerNode, ASTNode _childNode) {
int childIndex = this.getIndexOfChild(_callerNode);
return null;
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/TypeAnalysis.jrag:555
* @apilevel internal
* @return {@code true} if this node has an equation for the inherited attribute enclosingType
*/
protected boolean canDefine_enclosingType(ASTNode _callerNode, ASTNode _childNode) {
return true;
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/TypeAnalysis.jrag:572
* @apilevel internal
*/
public BodyDecl Define_enclosingBodyDecl(ASTNode _callerNode, ASTNode _childNode) {
int childIndex = this.getIndexOfChild(_callerNode);
return null;
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/TypeAnalysis.jrag:572
* @apilevel internal
* @return {@code true} if this node has an equation for the inherited attribute enclosingBodyDecl
*/
protected boolean canDefine_enclosingBodyDecl(ASTNode _callerNode, ASTNode _childNode) {
return true;
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/TypeAnalysis.jrag:580
* @apilevel internal
*/
public boolean Define_isNestedType(ASTNode _callerNode, ASTNode _childNode) {
int childIndex = this.getIndexOfChild(_callerNode);
return false;
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/TypeAnalysis.jrag:580
* @apilevel internal
* @return {@code true} if this node has an equation for the inherited attribute isNestedType
*/
protected boolean canDefine_isNestedType(ASTNode _callerNode, ASTNode _childNode) {
return true;
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/TypeAnalysis.jrag:588
* @apilevel internal
*/
public boolean Define_isMemberType(ASTNode _callerNode, ASTNode _childNode) {
if (_callerNode == getTypeDeclListNoTransform()) {
// @declaredat /home/jesper/git/extendj/java4/frontend/TypeAnalysis.jrag:591
int childIndex = _callerNode.getIndexOfChild(_childNode);
return false;
}
else {
return getParent().Define_isMemberType(this, _callerNode);
}
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/TypeAnalysis.jrag:588
* @apilevel internal
* @return {@code true} if this node has an equation for the inherited attribute isMemberType
*/
protected boolean canDefine_isMemberType(ASTNode _callerNode, ASTNode _childNode) {
return true;
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/TypeAnalysis.jrag:606
* @apilevel internal
*/
public boolean Define_isLocalClass(ASTNode _callerNode, ASTNode _childNode) {
int childIndex = this.getIndexOfChild(_callerNode);
return false;
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/TypeAnalysis.jrag:606
* @apilevel internal
* @return {@code true} if this node has an equation for the inherited attribute isLocalClass
*/
protected boolean canDefine_isLocalClass(ASTNode _callerNode, ASTNode _childNode) {
return true;
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/TypeAnalysis.jrag:641
* @apilevel internal
*/
public String Define_hostPackage(ASTNode _callerNode, ASTNode _childNode) {
int childIndex = this.getIndexOfChild(_callerNode);
return packageName();
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/TypeAnalysis.jrag:641
* @apilevel internal
* @return {@code true} if this node has an equation for the inherited attribute hostPackage
*/
protected boolean canDefine_hostPackage(ASTNode _callerNode, ASTNode _childNode) {
return true;
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/TypeAnalysis.jrag:658
* @apilevel internal
*/
public TypeDecl Define_hostType(ASTNode _callerNode, ASTNode _childNode) {
if (_callerNode == getImportDeclListNoTransform()) {
// @declaredat /home/jesper/git/extendj/java4/frontend/TypeAnalysis.jrag:654
int childIndex = _callerNode.getIndexOfChild(_childNode);
return null;
}
else {
return getParent().Define_hostType(this, _callerNode);
}
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/TypeAnalysis.jrag:658
* @apilevel internal
* @return {@code true} if this node has an equation for the inherited attribute hostType
*/
protected boolean canDefine_hostType(ASTNode _callerNode, ASTNode _childNode) {
return true;
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/QualifiedNames.jrag:113
* @apilevel internal
*/
public String Define_packageName(ASTNode _callerNode, ASTNode _childNode) {
int childIndex = this.getIndexOfChild(_callerNode);
return packageName();
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/QualifiedNames.jrag:113
* @apilevel internal
* @return {@code true} if this node has an equation for the inherited attribute packageName
*/
protected boolean canDefine_packageName(ASTNode _callerNode, ASTNode _childNode) {
return true;
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/SyntacticClassification.jrag:36
* @apilevel internal
*/
public NameType Define_nameType(ASTNode _callerNode, ASTNode _childNode) {
if (_callerNode == getImportDeclListNoTransform()) {
// @declaredat /home/jesper/git/extendj/java4/frontend/SyntacticClassification.jrag:93
int childIndex = _callerNode.getIndexOfChild(_childNode);
return NameType.PACKAGE_NAME;
}
else {
return getParent().Define_nameType(this, _callerNode);
}
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/SyntacticClassification.jrag:36
* @apilevel internal
* @return {@code true} if this node has an equation for the inherited attribute nameType
*/
protected boolean canDefine_nameType(ASTNode _callerNode, ASTNode _childNode) {
return true;
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/ExceptionHandling.jrag:93
* @apilevel internal
*/
public boolean Define_handlesException(ASTNode _callerNode, ASTNode _childNode, TypeDecl exceptionType) {
if (_callerNode == getTypeDeclListNoTransform()) {
// @declaredat /home/jesper/git/extendj/java4/frontend/ExceptionHandling.jrag:199
int childIndex = _callerNode.getIndexOfChild(_childNode);
return false;
}
else {
return getParent().Define_handlesException(this, _callerNode, exceptionType);
}
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/ExceptionHandling.jrag:93
* @apilevel internal
* @return {@code true} if this node has an equation for the inherited attribute handlesException
*/
protected boolean canDefine_handlesException(ASTNode _callerNode, ASTNode _childNode, TypeDecl exceptionType) {
return true;
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/DefiniteAssignment.jrag:66
* @apilevel internal
*/
public boolean Define_isIncOrDec(ASTNode _callerNode, ASTNode _childNode) {
if (_callerNode == getTypeDeclListNoTransform()) {
// @declaredat /home/jesper/git/extendj/java4/frontend/DefiniteAssignment.jrag:68
int childIndex = _callerNode.getIndexOfChild(_childNode);
return false;
}
else {
return getParent().Define_isIncOrDec(this, _callerNode);
}
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/DefiniteAssignment.jrag:66
* @apilevel internal
* @return {@code true} if this node has an equation for the inherited attribute isIncOrDec
*/
protected boolean canDefine_isIncOrDec(ASTNode _callerNode, ASTNode _childNode) {
return true;
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/ClassPath.jrag:110
* @apilevel internal
*/
public CompilationUnit Define_compilationUnit(ASTNode _callerNode, ASTNode _childNode) {
int childIndex = this.getIndexOfChild(_callerNode);
return this;
}
/**
* @declaredat /home/jesper/git/extendj/java4/frontend/ClassPath.jrag:110
* @apilevel internal
* @return {@code true} if this node has an equation for the inherited attribute compilationUnit
*/
protected boolean canDefine_compilationUnit(ASTNode _callerNode, ASTNode _childNode) {
return true;
}
/** @apilevel internal */
public ASTNode rewriteTo() {
return super.rewriteTo();
}
/** @apilevel internal */
public boolean canRewrite() {
return false;
}
/**
* Collects semantic errors in the AST.
*
* Separate error checks are added using individual contribution statements.
* @attribute coll
* @aspect ErrorCheck
* @declaredat /home/jesper/git/extendj/java4/frontend/ErrorCheck.jrag:283
*/
@ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.COLL)
@ASTNodeAnnotation.Source(aspect="ErrorCheck", declaredAt="/home/jesper/git/extendj/java4/frontend/ErrorCheck.jrag:283")
public LinkedList problems() {
ASTState state = state();
if (CompilationUnit_problems_computed == ASTState.NON_CYCLE || CompilationUnit_problems_computed == state().cycle()) {
return CompilationUnit_problems_value;
}
CompilationUnit_problems_value = problems_compute();
if (state().inCircle()) {
CompilationUnit_problems_computed = state().cycle();
} else {
CompilationUnit_problems_computed = ASTState.NON_CYCLE;
}
return CompilationUnit_problems_value;
}
/** @apilevel internal */
private LinkedList problems_compute() {
ASTNode node = this;
while (node != null && !(node instanceof CompilationUnit)) {
node = node.getParent();
}
CompilationUnit root = (CompilationUnit) node;
root.survey_CompilationUnit_problems();
LinkedList _computedValue = new LinkedList();
if (root.contributorMap_CompilationUnit_problems.containsKey(this)) {
for (ASTNode contributor : root.contributorMap_CompilationUnit_problems.get(this)) {
contributor.contributeTo_CompilationUnit_problems(_computedValue);
}
}
return _computedValue;
}
/** @apilevel internal */
protected ASTState.Cycle CompilationUnit_problems_computed = null;
/** @apilevel internal */
protected LinkedList CompilationUnit_problems_value;
/** @apilevel internal */
protected void collect_contributors_CompilationUnit_problems(CompilationUnit _root, java.util.Map> _map) {
// @declaredat /home/jesper/git/extendj/java4/frontend/NameCheck.jrag:66
{
java.util.Set contributors = _map.get(_root);
if (contributors == null) {
contributors = new java.util.LinkedHashSet();
_map.put((ASTNode) _root, contributors);
}
contributors.add(this);
}
super.collect_contributors_CompilationUnit_problems(_root, _map);
}
/** @apilevel internal */
protected void contributeTo_CompilationUnit_problems(LinkedList collection) {
super.contributeTo_CompilationUnit_problems(collection);
for (Problem value : nameProblems()) {
collection.add(value);
}
}
}