org.snapscript.tree.constraint.TraitConstraint 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 org.snapscript.core.Evaluation;
import org.snapscript.core.constraint.Constraint;
public class TraitConstraint extends ClassConstraint {
public TraitConstraint(Evaluation evaluation) {
super(evaluation);
}
public TraitConstraint(Evaluation evaluation, Constraint context) {
super(evaluation, context);
}
}