org.snapscript.tree.condition.DefaultCase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snap Show documentation
Show all versions of snap Show documentation
Dynamic scripting for the JVM
package org.snapscript.tree.condition;
import org.snapscript.core.Evaluation;
import org.snapscript.core.Statement;
import org.snapscript.tree.StatementBlock;
public class DefaultCase implements Case {
private final Statement statement;
public DefaultCase(Statement... statements) {
this.statement = new StatementBlock(statements);
}
@Override
public Evaluation getEvaluation(){
return null;
}
@Override
public Statement getStatement(){
return statement;
}
}