org.snapscript.tree.constraint.ConstructorName Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snap-all Show documentation
Show all versions of snap-all Show documentation
Dynamic scripting for the JVM
package org.snapscript.tree.constraint;
import static java.util.Collections.EMPTY_LIST;
import static org.snapscript.core.Reserved.TYPE_CONSTRUCTOR;
import java.util.List;
import org.snapscript.core.constraint.Constraint;
import org.snapscript.core.scope.Scope;
public class ConstructorName implements GenericName {
private final Constraint type;
public ConstructorName() {
this(null);
}
public ConstructorName(Constraint type) {
this.type = type;
}
@Override
public String getName(Scope scope) throws Exception{ // called from outer class
return TYPE_CONSTRUCTOR;
}
@Override
public List getGenerics(Scope scope) throws Exception {
if(type != null) {
return type.getGenerics(scope);
}
return EMPTY_LIST;
}
}