Interface CompilerContext
-
@ProviderType public interface CompilerContextCompilerContext...
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<java.lang.String>getDependencies()The dependencies can be updated by the compiler to add paths to dependant resources, for example external imports.java.lang.StringgetDestinationPath()Returns the path of the compiler output file.ScriptResourceProvidergetResourceProvider()Returns a resource provider for resolving external resources during compilation.
-
-
-
Method Detail
-
getResourceProvider
ScriptResourceProvider getResourceProvider()
Returns a resource provider for resolving external resources during compilation.- Returns:
- a resource provider.
-
getDestinationPath
java.lang.String getDestinationPath()
Returns the path of the compiler output file.- Returns:
- the path
-
getDependencies
java.util.Collection<java.lang.String> getDependencies()
The dependencies can be updated by the compiler to add paths to dependant resources, for example external imports.- Returns:
- the collection of dependencies
-
-