org.snapscript.tree.define.StaticConstantFactory 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.define;
import org.snapscript.core.Result;
import org.snapscript.core.ResultType;
import org.snapscript.core.Type;
public class StaticConstantFactory extends StaticFactory {
private final StaticConstantCollector collector;
public StaticConstantFactory() {
this.collector = new StaticConstantCollector();
}
@Override
protected Result compile(Type type) throws Exception {
collector.collect(type);
return ResultType.getNormal();
}
}