Uses of Interface
com.google.javascript.jscomp.ErrorManager
-
Packages that use ErrorManager Package Description com.google.javascript.jscomp com.google.javascript.jscomp.ant com.google.javascript.jscomp.deps com.google.javascript.refactoring -
-
Uses of ErrorManager in com.google.javascript.jscomp
Classes in com.google.javascript.jscomp that implement ErrorManager Modifier and Type Class Description class
BasicErrorManager
Deprecated.class
BlackHoleErrorManager
An ErrorManager that silently swallows all messages.class
LoggerErrorManager
An error manager that logs errors and warnings using a logger in addition to collecting them in memory.class
PrintStreamErrorManager
Deprecated., Please use the {#SortingErrorManger} with a {#PrintStreamErrorReportGenerator} instead.class
SortingErrorManager
A customizable error manager that sorts all errors and warnings reported to it, and has customizable output through theSortingErrorManager.ErrorReportGenerator
interface.class
ThreadSafeDelegatingErrorManager
A simple delegatingErrorManager
that provides a thread-safe wrapper for the one being delegated.Methods in com.google.javascript.jscomp that return ErrorManager Modifier and Type Method Description abstract ErrorManager
AbstractCompiler. getErrorManager()
Gets the error manager.ErrorManager
Compiler. getErrorManager()
Methods in com.google.javascript.jscomp with parameters of type ErrorManager Modifier and Type Method Description SourceMapConsumerV3
SourceMapInput. getSourceMap(ErrorManager errorManager)
Gets the source map, reading from disk and parsing if necessary.void
Compiler. setErrorManager(ErrorManager errorManager)
Sets the error manager.Constructors in com.google.javascript.jscomp with parameters of type ErrorManager Constructor Description Compiler(ErrorManager errorManager)
Creates a Compiler that uses a custom error manager.ThreadSafeDelegatingErrorManager(ErrorManager delegated)
-
Uses of ErrorManager in com.google.javascript.jscomp.ant
Classes in com.google.javascript.jscomp.ant that implement ErrorManager Modifier and Type Class Description class
AntErrorManager
An error manager that pipes warnings and errors properly into the Ant task infrastructure. -
Uses of ErrorManager in com.google.javascript.jscomp.deps
Constructors in com.google.javascript.jscomp.deps with parameters of type ErrorManager Constructor Description DepsFileRegexParser(com.google.common.base.Function<java.lang.String,java.lang.String> pathTranslator, ErrorManager errorManager)
DepsFileRegexParser(ErrorManager errorManager)
ConstructorDepsGenerator(java.util.Collection<SourceFile> deps, java.util.Collection<SourceFile> srcs, DepsGenerator.InclusionStrategy mergeStrategy, java.lang.String closurePathAbs, ErrorManager errorManager, ModuleLoader loader)
Creates a new DepsGenerator.JsFileLineParser(ErrorManager errorManager)
Constructor.JsFileRegexParser(ErrorManager errorManager)
Constructor -
Uses of ErrorManager in com.google.javascript.refactoring
Classes in com.google.javascript.refactoring that implement ErrorManager Modifier and Type Class Description class
FixingErrorManager
An error manager that finds a SuggestedFix for all errors if possible.
-