Package com.google.javascript.jscomp
Class StrictWarningsGuard
java.lang.Object
com.google.javascript.jscomp.WarningsGuard
com.google.javascript.jscomp.StrictWarningsGuard
- All Implemented Interfaces:
Serializable
All warnings should be reported as errors.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class com.google.javascript.jscomp.WarningsGuard
WarningsGuard.Priority
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected int
The priority in which warnings guards are applied.Returns a new check level for a given error.Methods inherited from class com.google.javascript.jscomp.WarningsGuard
disables, enables
-
Constructor Details
-
StrictWarningsGuard
public StrictWarningsGuard()
-
-
Method Details
-
level
Description copied from class:WarningsGuard
Returns a new check level for a given error. OFF - suppress it, ERROR - report as error. null means that this guard does not know what to do with the error. Null is extremely helpful when you have a chain of guards. If current guard returns null, then the next in the chain should process it.- Specified by:
level
in classWarningsGuard
- Parameters:
error
- a reported error.- Returns:
- what level given error should have.
-
getPriority
protected int getPriority()Description copied from class:WarningsGuard
The priority in which warnings guards are applied. Lower means the guard will be applied sooner. Expressed on a scale of 1 to 100.- Overrides:
getPriority
in classWarningsGuard
-