use of com.google.javascript.jscomp.deps.ModuleLoader in project closure-compiler by google.
the class CompilerInput method getPath.
public ModulePath getPath() {
if (modulePath == null) {
ModuleLoader moduleLoader = compiler.getModuleLoader();
this.modulePath = moduleLoader.resolve(getName());
}
return modulePath;
}
Aggregations