Package | Description |
---|---|
com.google.javascript.jscomp |
Provides the core compiler and its public API.
|
Modifier and Type | Method and Description |
---|---|
(package private) ExpressionDecomposer.DecompositionType |
ExpressionDecomposer.canExposeExpression(Node subExpression)
Determine whether a expression is movable, or can be be made movable be
decomposing the containing expression.
|
private ExpressionDecomposer.DecompositionType |
ExpressionDecomposer.isSubexpressionMovable(Node expressionRoot,
Node subExpression)
Walk the AST from the call site to the expression root and verify that
the portions of the expression that are evaluated before the call are:
1) Unaffected by the the side-effects, if any, of the call.
|
static ExpressionDecomposer.DecompositionType |
ExpressionDecomposer.DecompositionType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExpressionDecomposer.DecompositionType[] |
ExpressionDecomposer.DecompositionType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|