org.snapscript.tree.define.EnumList 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.type.Category.STATIC;
import org.snapscript.core.scope.Scope;
import org.snapscript.core.type.Type;
import org.snapscript.core.type.TypeBody;
import org.snapscript.core.type.TypePart;
import org.snapscript.core.type.TypeState;
public class EnumList extends TypePart {
private final EnumValue[] values;
public EnumList(EnumValue... values){
this.values = values;
}
@Override
public TypeState define(TypeBody body, Type type, Scope scope) throws Exception {
TypeStateCollector collector = new TypeStateCollector(STATIC);
int index = 0;
for(EnumValue value : values) {
TypeState state = value.define(body, type, index++);
if(state != null) {
collector.update(state);
}
}
return collector;
}
}