Uses of Class
com.google.javascript.jscomp.PassFactory
-
Packages that use PassFactory Package Description com.google.javascript.jscomp -
-
Uses of PassFactory in com.google.javascript.jscomp
Methods in com.google.javascript.jscomp that return PassFactory Modifier and Type Method Description PassFactory
PassFactory.Builder. build()
static PassFactory
PassFactory. createEmptyPass(java.lang.String name)
Create a no-op pass that can only run once.PassFactory
PassListBuilder. findByName(java.lang.String name)
Methods in com.google.javascript.jscomp that return types with arguments of type PassFactory Modifier and Type Method Description com.google.common.collect.ImmutableList<PassFactory>
PassListBuilder. build()
Methods in com.google.javascript.jscomp with parameters of type PassFactory Modifier and Type Method Description void
PassListBuilder. addAfter(PassFactory factory, java.lang.String passName)
Insert the given pass factory before the factory of the given name.void
PassListBuilder. addBefore(PassFactory factory, java.lang.String passName)
Insert the given pass factory before the factory of the given name.void
PassListBuilder. assertPassOrder(PassFactory pass1, PassFactory pass2, java.lang.String msg)
Asserts that if both PassFactory are present, pass1 is ordered before pass2.boolean
PassListBuilder. contains(PassFactory factory)
void
PassListBuilder. maybeAdd(PassFactory factory)
Add only if the PassFactory condition evaluates to true.
-