package typinferenz; import java.util.Vector; import mycompiler.myclass.*; import mycompiler.mytype.TypePlaceholder; public class FunNMethod extends Method{ /** * * @param N - Anzahl der Parameter (Beispiel: Fun2) */ public FunNMethod(int N){ super(0); //Hat keinen Offset, da nur theoretisch gedachte Methode this.setType(TypePlaceholder.fresh(this)); ParameterList pl = new ParameterList(); Vector fpList = new Vector(); for(int i = 0;i