org.snapscript.core.Identity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snap-all Show documentation
Show all versions of snap-all Show documentation
Dynamic scripting for the JVM
package org.snapscript.core;
public class Identity implements Evaluation {
private final Object value;
public Identity(Object value) {
this.value = value;
}
@Override
public Value evaluate(Scope scope, Object left) throws Exception {
return ValueType.getTransient(value);
}
}