org.snapscript.tree.define.InstanceField 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.define;
import static org.snapscript.core.result.Result.NORMAL;
import static org.snapscript.core.type.Category.INSTANCE;
import org.snapscript.core.Evaluation;
import org.snapscript.core.scope.Scope;
import org.snapscript.core.type.TypeState;
import org.snapscript.core.type.Category;
import org.snapscript.core.type.Type;
import org.snapscript.core.result.Result;
public class InstanceField extends TypeState {
private final Evaluation evaluation;
public InstanceField(Evaluation evaluation){
this.evaluation = evaluation;
}
@Override
public Category define(Scope scope, Type type) throws Exception {
if(evaluation != null) {
evaluation.define(scope);
}
return INSTANCE;
}
@Override
public void compile(Scope scope, Type type) throws Exception {
if(evaluation != null) {
evaluation.compile(scope, null);
}
}
@Override
public Result execute(Scope scope, Type type) throws Exception {
if(evaluation != null) {
evaluation.evaluate(scope, null);
}
return NORMAL;
}
}