blob: 9a719483596ab4d66f702a8aa3553ae2e91473de [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.eval;
import org.eclipse.jdt.internal.compiler.ClassFile;
import org.eclipse.jdt.internal.compiler.CompilationResult;
import org.eclipse.jdt.internal.compiler.ast.TypeDeclaration;
import org.eclipse.jdt.internal.compiler.problem.AbortType;
public class CodeSnippetTypeDeclaration extends TypeDeclaration {
public CodeSnippetTypeDeclaration(CompilationResult compilationResult){
super(compilationResult);
}
/**
* Generic bytecode generation for type
*/
public void generateCode(ClassFile enclosingClassFile) {
if (this.hasBeenGenerated) return;
this.hasBeenGenerated = true;
if (this.ignoreFurtherInvestigation) {
if (this.binding == null)
return;
CodeSnippetClassFile.createProblemType(this, this.scope.referenceCompilationUnit().compilationResult);
return;
}
try {
// create the result for a compiled type
ClassFile classFile = new CodeSnippetClassFile(this.binding, enclosingClassFile, false);
// generate all fiels
classFile.addFieldInfos();
// record the inner type inside its own .class file to be able
// to generate inner classes attributes
if (this.binding.isMemberType())
classFile.recordEnclosingTypeAttributes(this.binding);
if (this.binding.isLocalType()) {
enclosingClassFile.recordNestedLocalAttribute(this.binding);
classFile.recordNestedLocalAttribute(this.binding);
}
if (this.memberTypes != null) {
for (int i = 0, max = this.memberTypes.length; i < max; i++) {
// record the inner type inside its own .class file to be able
// to generate inner classes attributes
classFile.recordNestedMemberAttribute(this.memberTypes[i].binding);
this.memberTypes[i].generateCode(this.scope, classFile);
}
}
// generate all methods
classFile.setForMethodInfos();
if (this.methods != null) {
for (int i = 0, max = this.methods.length; i < max; i++) {
this.methods[i].generateCode(this.scope, classFile);
}
}
// generate all methods
classFile.addSpecialMethods();
if (this.ignoreFurtherInvestigation){ // trigger problem type generation for code gen errors
throw new AbortType(this.scope.referenceCompilationUnit().compilationResult, null);
}
// finalize the compiled type result
classFile.addAttributes();
this.scope.referenceCompilationUnit().compilationResult.record(this.binding.constantPoolName(), classFile);
} catch (AbortType e) {
if (this.binding == null)
return;
CodeSnippetClassFile.createProblemType(this, this.scope.referenceCompilationUnit().compilationResult);
}
}
}