org.snapscript.tree.annotation.AnnotationDeclaration Maven / Gradle / Ivy
package org.snapscript.tree.annotation;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Set;
import org.snapscript.core.Evaluation;
import org.snapscript.core.InternalStateException;
import org.snapscript.core.Scope;
import org.snapscript.core.Value;
import org.snapscript.core.ValueType;
import org.snapscript.core.annotation.Annotation;
import org.snapscript.core.annotation.MapAnnotation;
import org.snapscript.tree.construct.MapEntryList;
public class AnnotationDeclaration implements Evaluation {
private AnnotationName name;
private MapEntryList list;
private Value value;
public AnnotationDeclaration(AnnotationName name) {
this(name, null);
}
public AnnotationDeclaration(AnnotationName name, MapEntryList list) {
this.list = list;
this.name = name;
}
@Override
public Value evaluate(Scope scope, Object left) throws Exception {
if(value == null) {
Annotation annotation = create(scope, left);
if(annotation == null) {
throw new InternalStateException("Could not create annotation");
}
value = ValueType.getTransient(annotation);
}
return value;
}
private Annotation create(Scope scope, Object left) throws Exception {
Map attributes = new LinkedHashMap();
if(list != null) {
Value value = list.evaluate(scope, left);
Map