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 void
enterScope(NodeTraversal t)
Updates block stack and invokes any additional behavior.void
exitScope(NodeTraversal t)
Updates block stack and invokes any additional behavior.void
process(Node root)
void
process(Node externs, Node root)
Convenience method for running this pass over a tree with this class as a callback.boolean
shouldTraverse(NodeTraversal t, Node n, Node parent)
Visits a node in preorder (before its children) and decides whether its children should be traversed.void
visit(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:
process
in 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:
visit
in 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:
enterScope
in interfaceNodeTraversal.ScopedCallback
-
exitScope
public void exitScope(NodeTraversal t)
Updates block stack and invokes any additional behavior.- Specified by:
exitScope
in interfaceNodeTraversal.ScopedCallback
-
shouldTraverse
public boolean shouldTraverse(NodeTraversal t, Node n, Node parent)
Description copied from interface:NodeTraversal.Callback
Visits 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:
shouldTraverse
in interfaceNodeTraversal.Callback
- Parameters:
t
- The current traversal.n
- The current node.parent
- The parent of the current node.- Returns:
- whether the children of this node should be visited
-
-