org.snapscript.tree.NameReference 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;
import org.snapscript.core.Evaluation;
import org.snapscript.core.error.InternalStateException;
import org.snapscript.core.scope.Scope;
import org.snapscript.core.variable.Value;
public class NameReference {
private Evaluation identifier;
private String name;
public NameReference(Evaluation identifier) {
this.identifier = identifier;
}
public String getName(Scope scope) throws Exception {
if(name == null) {
Value value = identifier.evaluate(scope, null);
String identifier = value.getString();
if(identifier == null) {
throw new InternalStateException("Name evaluated to null");
}
name = identifier;
}
return name;
}
}