org.snapscript.tree.variable.ModuleConstantResolver 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.variable;
import org.snapscript.core.Module;
import org.snapscript.core.ModuleScopeBinder;
import org.snapscript.core.Scope;
import org.snapscript.core.Type;
import org.snapscript.core.TypeTraverser;
public class ModuleConstantResolver {
private final ModuleScopeBinder binder;
private final TypeTraverser finder;
public ModuleConstantResolver() {
this.binder = new ModuleScopeBinder();
this.finder = new TypeTraverser();
}
public Object resolve(Scope scope, String name) {
Scope current = binder.bind(scope); // this could be slow
Module module = current.getModule();
Type type = module.getType(name);
Type parent = current.getType();
if(type == null) {
Object result = module.getModule(name);
if(result == null && parent != null) {
result = finder.findEnclosing(parent, name);
}
return result;
}
return type;
}
}