Package com.google.javascript.jscomp
Class CrossChunkReferenceCollector
- java.lang.Object
-
- com.google.javascript.jscomp.CrossChunkReferenceCollector
-
- All Implemented Interfaces:
CompilerPass,NodeTraversal.Callback,NodeTraversal.ScopedCallback
public final class CrossChunkReferenceCollector extends java.lang.Object implements NodeTraversal.ScopedCallback, CompilerPass
Collects global variable references for use byCrossChunkCodeMotion.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidenterScope(NodeTraversal t)Updates block stack and invokes any additional behavior.voidexitScope(NodeTraversal t)Updates block stack and invokes any additional behavior.voidprocess(Node root)voidprocess(Node externs, Node root)Convenience method for running this pass over a tree with this class as a callback.booleanshouldTraverse(NodeTraversal nodeTraversal, Node n, Node parent)Visits a node in preorder (before its children) and decides whether its children should be traversed.voidvisit(NodeTraversal t, Node n, Node parent)For each node, update the block stack and reference collection as appropriate.
-
-
-
Method Detail
-
process
public void process(Node externs, Node root)
Convenience method for running this pass over a tree with this class as a callback.- Specified by:
processin interfaceCompilerPass- Parameters:
externs- Top of external JS treeroot- Top of JS tree
-
process
public void process(Node root)
-
visit
public void visit(NodeTraversal t, Node n, Node parent)
For each node, update the block stack and reference collection as appropriate.- Specified by:
visitin interfaceNodeTraversal.Callback- Parameters:
t- The current traversal.n- The current node.parent- The parent of the current node.
-
enterScope
public void enterScope(NodeTraversal t)
Updates block stack and invokes any additional behavior.- Specified by:
enterScopein interfaceNodeTraversal.ScopedCallback
-
exitScope
public void exitScope(NodeTraversal t)
Updates block stack and invokes any additional behavior.- Specified by:
exitScopein interfaceNodeTraversal.ScopedCallback
-
shouldTraverse
public boolean shouldTraverse(NodeTraversal nodeTraversal, Node n, Node parent)
Description copied from interface:NodeTraversal.CallbackVisits a node in preorder (before its children) and decides whether its children should be traversed. If the children should be traversed, they will be visited byNodeTraversal.Callback.shouldTraverse(NodeTraversal, Node, Node)in preorder and byNodeTraversal.Callback.visit(NodeTraversal, Node, Node)in postorder.Siblings are always visited left-to-right.
Implementations can have side-effects (e.g. modify the parse tree). Removing the current node is legal, but removing or reordering nodes above the current node may cause nodes to be visited twice or not at all.
- Specified by:
shouldTraversein interfaceNodeTraversal.Callback- Parameters:
nodeTraversal- The current traversal.n- The current node.parent- The parent of the current node.- Returns:
- whether the children of this node should be visited
-
-