Package | Description |
---|---|
com.google.javascript.jscomp |
Provides the core compiler and its public API.
|
com.google.javascript.jscomp.graph |
Provides graph data structures and algorithms for coloring and fixed-point
computations.
|
Modifier and Type | Class and Description |
---|---|
class |
ControlFlowGraph<N>
Control flow graph.
|
Modifier and Type | Method and Description |
---|---|
DiGraph<CallGraph.Function,CallGraph.Callsite> |
CallGraph.getBackwardDirectedGraph()
Constructs and returns a directed graph where the nodes are functions and
the edges are callsites connecting callees to callers.
|
DiGraph<CallGraph.Function,CallGraph.Callsite> |
CallGraph.getForwardDirectedGraph()
Constructs and returns a directed graph where the nodes are functions and
the edges are callsites connecting callers to callees.
|
Constructor and Description |
---|
CheckPathsBetweenNodes(DiGraph<N,E> graph,
DiGraph.DiGraphNode<N,E> a,
DiGraph.DiGraphNode<N,E> b,
com.google.common.base.Predicate<N> nodePredicate,
com.google.common.base.Predicate<DiGraph.DiGraphEdge<N,E>> edgePredicate)
Inclusive check.
|
Modifier and Type | Class and Description |
---|---|
class |
LinkedDirectedGraph<N,E>
A directed graph using linked list within nodes to store edge information.
|
Modifier and Type | Method and Description |
---|---|
void |
FixedPointGraphTraversal.computeFixedPoint(DiGraph<N,E> graph)
Compute a fixed point for the given graph.
|
void |
FixedPointGraphTraversal.computeFixedPoint(DiGraph<N,E> graph,
N entry)
Compute a fixed point for the given graph, entering from the given node.
|
void |
FixedPointGraphTraversal.computeFixedPoint(DiGraph<N,E> graph,
Set<N> entrySet)
Compute a fixed point for the given graph, entering from the given nodes.
|
Constructor and Description |
---|
GraphReachability(DiGraph<N,E> graph) |
GraphReachability(DiGraph<N,E> graph,
com.google.common.base.Predicate<GraphReachability.EdgeTuple<N,E>> edgePredicate) |
Copyright © 2009-2017 Google. All Rights Reserved.