org.snapscript.tree.define.MemberFieldDeclaration 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.ModifierType.CONSTANT;
import static org.snapscript.core.ModifierType.PUBLIC;
import org.snapscript.core.Evaluation;
import org.snapscript.core.constraint.Constraint;
import org.snapscript.core.constraint.DeclarationConstraint;
import org.snapscript.core.scope.Scope;
import org.snapscript.core.type.Type;
import org.snapscript.tree.literal.TextLiteral;
public class MemberFieldDeclaration {
private final DeclarationConstraint constraint;
private final MemberFieldReference identifier;
private final Evaluation value;
public MemberFieldDeclaration(TextLiteral identifier) {
this(identifier, null, null);
}
public MemberFieldDeclaration(TextLiteral identifier, Constraint constraint) {
this(identifier, constraint, null);
}
public MemberFieldDeclaration(TextLiteral identifier, Evaluation value) {
this(identifier, null, value);
}
public MemberFieldDeclaration(TextLiteral identifier, Constraint constraint, Evaluation value) {
this.constraint = new DeclarationConstraint(constraint);
this.identifier = new MemberFieldReference(identifier);
this.value = value;
}
public MemberFieldData create(Scope scope, int modifiers) throws Exception {
Type type = scope.getType();
String alias = identifier.getName(type, modifiers);
String name = identifier.getName(type, PUBLIC.mask);
Constraint require = constraint.getConstraint(scope, modifiers);
if(value == null) {
int mask = modifiers & ~CONSTANT.mask;
Constraint blank = constraint.getConstraint(scope, mask); // const that is not assigned
return new MemberFieldData(name, alias, blank, null);
}
return new MemberFieldData(name, alias, require, value);
}
}