blob: dc4f36c320e21b99b34b458d3a85af4b20e129f2 [file] [log] [blame]
package edu.uci.ics.asterix.aql.context;
import edu.uci.ics.asterix.aql.parser.ScopeChecker;
public class RootScopeFactory {
public static Scope createRootScope(ScopeChecker sc) {
Scope rootScope = new Scope(sc);
return rootScope;
}
}