Package com.google.javascript.jscomp
Interface CompilerInputProvider
-
- All Known Implementing Classes:
AbstractCompiler
,Compiler
public interface CompilerInputProvider
A provider mapping a InputId to a CompilerInput.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable CompilerInput
getInput(InputId inputId)
Looks up an input (possibly an externs input) by input id.
-
-
-
Method Detail
-
getInput
@Nullable CompilerInput getInput(InputId inputId)
Looks up an input (possibly an externs input) by input id. May return null.
-
-