org.snapscript.tree.variable.VariablePointer Maven / Gradle / Ivy
package org.snapscript.tree.variable;
import org.snapscript.core.Scope;
import org.snapscript.core.Value;
public interface VariablePointer {
Value get(Scope scope, T left);
}
package org.snapscript.tree.variable;
import org.snapscript.core.Scope;
import org.snapscript.core.Value;
public interface VariablePointer {
Value get(Scope scope, T left);
}