All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.snapscript.tree.define.SuperConstructorAssembler Maven / Gradle / Ivy

There is a newer version: 1.4.6
Show newest version
package org.snapscript.tree.define;

import org.snapscript.core.scope.Scope;
import org.snapscript.core.type.Type;
import org.snapscript.core.type.TypeBody;
import org.snapscript.core.type.TypeState;
import org.snapscript.tree.ArgumentList;

public class SuperConstructorAssembler {

   private final ArgumentList arguments;

   public SuperConstructorAssembler(ArgumentList arguments){  
      this.arguments = arguments;
   } 

   public TypeState assemble(TypeBody body, Type type, Scope scope) throws Exception { 
      return new SuperState(arguments, type);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy