// ino.module.LocalOrFieldVar.8637.package package de.dhbwstuttgart.syntaxtree.statement; // ino.end // ino.module.LocalOrFieldVar.8637.import import java.util.Enumeration; import java.util.Hashtable; import org.apache.commons.bcel6.generic.ClassGen; import de.dhbwstuttgart.typeinference.Menge; import de.dhbwstuttgart.logger.Logger; import de.dhbwstuttgart.myexception.CTypeReconstructionException; import de.dhbwstuttgart.myexception.JVMCodeException; import de.dhbwstuttgart.myexception.SCExcept; import de.dhbwstuttgart.myexception.SCStatementException; import de.dhbwstuttgart.syntaxtree.Class; import de.dhbwstuttgart.syntaxtree.SyntaxTreeNode; import de.dhbwstuttgart.syntaxtree.misc.UsedId; import de.dhbwstuttgart.syntaxtree.type.GenericTypeVar; import de.dhbwstuttgart.syntaxtree.type.RefType; import de.dhbwstuttgart.syntaxtree.type.Type; import de.dhbwstuttgart.syntaxtree.type.TypePlaceholder; import de.dhbwstuttgart.typeinference.ConstraintsSet; import de.dhbwstuttgart.typeinference.JavaCodeResult; import de.dhbwstuttgart.typeinference.ResultSet; import de.dhbwstuttgart.typeinference.SingleConstraint; import de.dhbwstuttgart.typeinference.assumptions.TypeAssumptions; import de.dhbwstuttgart.typeinference.exceptions.TypeinferenceException; import de.dhbwstuttgart.typeinference.unify.CSubstitutionSet; // ino.class.LocalOrFieldVar.25503.declaration public class LocalOrFieldVar extends Expr // ino.end // ino.class.LocalOrFieldVar.25503.body { // ino.attribute.parserlog.25507.declaration protected static Logger parserlog = Logger.getLogger("parser"); // ino.end // ino.method.LocalOrFieldVar.25510.definition public LocalOrFieldVar(int offset, int variableLength) // ino.end // ino.method.LocalOrFieldVar.25510.body { super(offset,variableLength); } // ino.end // ino.method.LocalOrFieldVar.25513.definition public LocalOrFieldVar(String n, int offset) // ino.end // ino.method.LocalOrFieldVar.25513.body { super(offset,n.length()); usedid = new UsedId(offset); usedid.set_Name(n); } // ino.end // ino.method.set_UsedId.25519.definition public void set_UsedId(UsedId u) // ino.end // ino.method.set_UsedId.25519.body { this.usedid=u; } // ino.end // ino.method.get_Name.25522.definition public String get_Name() // ino.end // ino.method.get_Name.25522.body { return usedid.get_Name_1Element(); } // ino.end // ino.method.toString.25534.defdescription type=javadoc /** *
Author: Martin Pl�micke * @return */ // ino.end // ino.method.toString.25534.definition public String toString() // ino.end // ino.method.toString.25534.body { if(getType()==null)return usedid.toString(); return usedid.toString() + ": " + getType().toString(); } // ino.end // ino.method.wandleRefTypeAttributes2GenericAttributes.25537.definition public void wandleRefTypeAttributes2GenericAttributes(Menge paralist, Menge genericMethodParameters) // ino.end // ino.method.wandleRefTypeAttributes2GenericAttributes.25537.body { } // ino.end @Override public ConstraintsSet TYPEExpr(TypeAssumptions assumptions) { ConstraintsSet ret = new ConstraintsSet(); //gibt es eine Assumption für den die LocalOrFieldVar-Variablen, dann folgendes ausführen: Type thisTypeAssumption = assumptions.getVarType(this.get_Name(), this.getParentClass()); if(thisTypeAssumption == null)throw new TypeinferenceException("Eine Variable "+this.get_Name()+" ist in den Assumptions nicht vorhanden",this); Type thisType = thisTypeAssumption.checkTYPE(assumptions, this); this.setType(thisType); //ret.add(new Constraint(thisTypeAssumption, this.getTypeVariable())); return ret; } public String getTypeInformation(){ return this.getType()+" "+this.get_Name(); } @Override public JavaCodeResult printJavaCode(ResultSet resultSet) { return new JavaCodeResult(this.get_Name()); } @Override public Menge getChildren() { Menge ret = new Menge(); return ret; } @Override public void genByteCode(ClassGen _cg) { // TODO Auto-generated method stub } } // ino.end