org.extendj.ast.EnclosingMethod Maven / Gradle / Ivy
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 org.jastadd.util.PrettyPrintable;
import org.jastadd.util.PrettyPrinter;
import org.jastadd.util.*;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.InputStream;
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;
import java.io.BufferedInputStream;
import java.io.DataInputStream;
/**
* @ast class
* @aspect EnclosingMethodAttribute
* @declaredat /home/jesper/git/extendj/java5/backend/EnclosingMethodAttribute.jrag:41
*/
class EnclosingMethod extends Attribute {
public EnclosingMethod(ConstantPool cp, TypeDecl typeDecl) {
super(cp, "EnclosingMethod");
u2(cp.addClass(typeDecl.enclosingType().constantPoolName()));
BodyDecl b = typeDecl.enclosingBodyDecl();
if (b instanceof MethodDecl) {
MethodDecl m = (MethodDecl) b;
u2(cp.addNameAndType(m.name(), m.descName()));
} else if (b instanceof ConstructorDecl) {
ConstructorDecl m = (ConstructorDecl) b;
u2(cp.addNameAndType(m.name(), m.descName()));
} else {
u2(0);
}
}
}