org.snapscript.tree.define.MemberFieldAllocator 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 org.snapscript.core.Evaluation;
import org.snapscript.core.ModifierType;
import org.snapscript.core.scope.Scope;
import org.snapscript.core.variable.Value;
import org.snapscript.core.constraint.Constraint;
import org.snapscript.tree.DeclarationAllocator;
public class MemberFieldAllocator extends DeclarationAllocator {
public MemberFieldAllocator(Constraint constraint, Evaluation expression) {
super(constraint, expression);
}
@Override
protected T declare(Scope scope, String name, Constraint type, int modifiers) throws Exception {
if(ModifierType.isConstant(modifiers)) {
return (T)Value.getBlank(null, type, modifiers);
}
return (T)Value.getProperty(null, type, modifiers);
}
@Override
protected T assign(Scope scope, String name, Object value, Constraint type, int modifiers) throws Exception {
if(ModifierType.isConstant(modifiers)) {
return (T)Value.getConstant(value, type, modifiers);
}
return (T)Value.getProperty(value, type, modifiers);
}
}