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 |
---|---|
(package private) class |
AmbiguateProperties.PropertyGraph |
private static class |
ControlFlowAnalysis.AstControlFlowGraph
A
ControlFlowGraph which provides a node comparator based on the
pre-order traversal of the AST. |
class |
ControlFlowGraph<N>
Control flow graph.
|
(package private) class |
NameReferenceGraph
A graph represents all the referencing of global names in the program.
|
Modifier and Type | Class and Description |
---|---|
class |
DiGraph<N,E>
A generic directed graph.
|
class |
Graph<N,E>
The base generic class for graph-like data structure and algorithms in
the compiler.
|
class |
LinkedDirectedGraph<N,E>
A directed graph using linked list within nodes to store edge information.
|
class |
LinkedUndirectedGraph<N,E>
An undirected graph using linked list within nodes to store edge
information.
|
class |
UndiGraph<N,E>
A generic undirected graph.
|
Modifier and Type | Field and Description |
---|---|
protected AdjacencyGraph<N,E> |
GraphColoring.graph |
Modifier and Type | Method and Description |
---|---|
AdjacencyGraph<N,E> |
GraphColoring.getGraph() |
Constructor and Description |
---|
GraphColoring(AdjacencyGraph<N,E> graph) |
GreedyGraphColoring(AdjacencyGraph<N,E> graph) |
GreedyGraphColoring(AdjacencyGraph<N,E> graph,
java.util.Comparator<N> tieBreaker) |