本文整理汇总了Java中com.google.javascript.jscomp.graph.GraphNode.getAnnotation方法的典型用法代码示例。如果您正苦于以下问题:Java GraphNode.getAnnotation方法的具体用法?Java GraphNode.getAnnotation怎么用?Java GraphNode.getAnnotation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.google.javascript.jscomp.graph.GraphNode
的用法示例。
在下文中一共展示了GraphNode.getAnnotation方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: shouldTraverse
import com.google.javascript.jscomp.graph.GraphNode; //导入方法依赖的package包/类
@Override
public boolean shouldTraverse(NodeTraversal t, Node n, Node parent) {
GraphNode<Node, Branch> gNode = t.getControlFlowGraph().getNode(n);
if (gNode != null && gNode.getAnnotation() != GraphReachability.REACHABLE) {
// Only report error when there are some line number informations.
// There are synthetic nodes with no line number informations, nodes
// introduce by other passes (although not likely since this pass should
// be executed early) or some rhino bug.
if (n.getLineno() != -1 &&
// Allow spurious semi-colons and spurious breaks.
n.getType() != Token.EMPTY && n.getType() != Token.BREAK) {
compiler.report(JSError.make(t, n, level, UNREACHABLE_CODE));
// From now on, we are going to assume the user fixed the error and not
// give more warning related to code section reachable from this node.
new GraphReachability<Node, ControlFlowGraph.Branch>(
t.getControlFlowGraph()).recompute(n);
// Saves time by not traversing children.
return false;
}
}
return true;
}
示例2: shouldTraverse
import com.google.javascript.jscomp.graph.GraphNode; //导入方法依赖的package包/类
@Override
public boolean shouldTraverse(NodeTraversal t, Node n, Node parent) {
GraphNode<Node, Branch> gNode = t.getControlFlowGraph().getNode(n);
if (gNode != null && gNode.getAnnotation() != GraphReachability.REACHABLE) {
// Only report error when there are some line number informations.
// There are synthetic nodes with no line number informations, nodes
// introduce by other passes (although not likely since this pass should
// be executed early) or some rhino bug.
if (n.getLineno() != -1 &&
// Allow spurious semi-colons and spurious breaks.
!n.isEmpty() && !n.isBreak()) {
compiler.report(t.makeError(n, level, UNREACHABLE_CODE));
// From now on, we are going to assume the user fixed the error and not
// give more warning related to code section reachable from this node.
new GraphReachability<Node, ControlFlowGraph.Branch>(
t.getControlFlowGraph()).recompute(n);
// Saves time by not traversing children.
return false;
}
}
return true;
}
示例3: shouldTraverse
import com.google.javascript.jscomp.graph.GraphNode; //导入方法依赖的package包/类
@Override
public boolean shouldTraverse(NodeTraversal t, Node n, Node parent) {
GraphNode<Node, Branch> gNode = t.getControlFlowGraph().getNode(n);
if (gNode != null && gNode.getAnnotation() != GraphReachability.REACHABLE) {
// Only report error when there are some line number informations.
// There are synthetic nodes with no line number informations, nodes
// introduce by other passes (although not likely since this pass should
// be executed early) or some rhino bug.
if (n.getLineno() != -1 &&
// Allow spurious semi-colons and spurious breaks.
!n.isEmpty() && !n.isBreak()) {
compiler.report(t.makeError(n, UNREACHABLE_CODE));
// From now on, we are going to assume the user fixed the error and not
// give more warning related to code section reachable from this node.
new GraphReachability<>(t.getControlFlowGraph()).recompute(n);
// Saves time by not traversing children.
return false;
}
}
return true;
}
示例4: shouldTraverse
import com.google.javascript.jscomp.graph.GraphNode; //导入方法依赖的package包/类
@Override
public boolean shouldTraverse(NodeTraversal t, Node n, Node parent) {
GraphNode<Node, Branch> gNode = t.getControlFlowGraph().getNode(n);
if (gNode != null && gNode.getAnnotation() != GraphReachability.REACHABLE) {
// Only report error when there are some line number informations.
// There are synthetic nodes with no line number informations, nodes
// introduce by other passes (although not likely since this pass should
// be executed early) or some rhino bug.
if (n.getLineno() != -1 &&
// Allow spurious semi-colons and spurious breaks.
!n.isEmpty() && !n.isBreak()) {
compiler.report(t.makeError(n, UNREACHABLE_CODE));
// From now on, we are going to assume the user fixed the error and not
// give more warning related to code section reachable from this node.
new GraphReachability<>(
t.getControlFlowGraph()).recompute(n);
// Saves time by not traversing children.
return false;
}
}
return true;
}
示例5: visit
import com.google.javascript.jscomp.graph.GraphNode; //导入方法依赖的package包/类
@Override
public void visit(NodeTraversal t, Node n, Node parent) {
if (parent == null) {
return;
}
if (n.getType() == Token.FUNCTION || n.getType() == Token.SCRIPT) {
return;
}
// Removes TRYs that had its CATCH removed and/or empty FINALLY.
if (n.getType() == Token.TRY) {
Node body = n.getFirstChild();
Node catchOrFinallyBlock = body.getNext();
Node finallyBlock = catchOrFinallyBlock.getNext();
if (!catchOrFinallyBlock.hasChildren() &&
(finallyBlock == null || !finallyBlock.hasChildren())) {
n.removeChild(body);
parent.replaceChild(n, body);
compiler.reportCodeChange();
n = body;
}
}
GraphNode<Node, Branch> gNode = curCfg.getNode(n);
if (gNode == null) { // Not in CFG.
return;
}
if (gNode.getAnnotation() != GraphReachability.REACHABLE ||
(removeNoOpStatements && !NodeUtil.mayHaveSideEffects(n))) {
removeDeadExprStatementSafely(n, parent);
}
}
示例6: getDef
import com.google.javascript.jscomp.graph.GraphNode; //导入方法依赖的package包/类
/**
* Gets the must reaching definition of a given node. The node must be one of
* the control flow graph nodes.
*
* @param name name of the variable. It can only be names of local variable
* that are not function parameters, escaped variables or variables
* declared in catch.
* @param useNode the location of the use where the definition reaches.
*/
Node getDef(String name, Node useNode) {
Preconditions.checkArgument(getCfg().hasNode(useNode));
GraphNode<Node, Branch> n = getCfg().getNode(useNode);
FlowState<MustDef> state = n.getAnnotation();
Definition def = state.getIn().reachingDef.get(jsScope.getVar(name));
if (def == null) {
return null;
} else {
return def.node;
}
}
示例7: removeUnusedProperties
import com.google.javascript.jscomp.graph.GraphNode; //导入方法依赖的package包/类
/**
* Remove all properties under a given name if the property name is
* never referenced.
*/
private void removeUnusedProperties(NameReferenceGraph graph) {
for (GraphNode<Name, Reference> node : graph.getNodes()) {
Name name = node.getValue();
NameInfo nameInfo = node.getAnnotation();
if (nameInfo == null || !nameInfo.isReferenced()) {
name.remove();
compiler.reportCodeChange();
logger.fine("Removed unused name" + name);
}
}
}
示例8: getInfo
import com.google.javascript.jscomp.graph.GraphNode; //导入方法依赖的package包/类
private NameInfo getInfo(Name symbol) {
GraphNode<Name, Reference> name = graph.getNode(symbol);
NameInfo info = name.getAnnotation();
if (info == null) {
info = new NameInfo();
name.setAnnotation(info);
}
return info;
}
示例9: traverseEdge
import com.google.javascript.jscomp.graph.GraphNode; //导入方法依赖的package包/类
@Override
public boolean traverseEdge(N source, E e, N destination) {
if (graph.getNode(source).getAnnotation() == REACHABLE) {
GraphNode<N, E> destNode = graph.getNode(destination);
if (destNode.getAnnotation() != REACHABLE) {
destNode.setAnnotation(REACHABLE);
return true;
}
}
return false;
}
示例10: dependsOnOuterScopeVars
import com.google.javascript.jscomp.graph.GraphNode; //导入方法依赖的package包/类
boolean dependsOnOuterScopeVars(String name, Node useNode) {
Preconditions.checkArgument(getCfg().hasNode(useNode));
GraphNode<Node, Branch> n = getCfg().getNode(useNode);
FlowState<MustDef> state = n.getAnnotation();
Definition def = state.getIn().reachingDef.get(jsScope.getVar(name));
for (Var s : def.depends) {
if (s.scope != jsScope) {
return true;
}
}
return false;
}
示例11: removeUnusedProperties
import com.google.javascript.jscomp.graph.GraphNode; //导入方法依赖的package包/类
/**
* Remove all properties under a given name if the property name is
* never referenced.
*/
private void removeUnusedProperties(NameReferenceGraph graph) {
for (GraphNode<Name, Reference> node : graph.getNodes()) {
Name name = node.getValue();
NameInfo nameInfo = node.getAnnotation();
if (nameInfo == null || !nameInfo.isReferenced()) {
if (canModifyExterns || !name.isExtern()) {
name.remove();
compiler.reportCodeChange();
logger.fine("Removed unused name" + name);
}
}
}
}
示例12: shouldTraverse
import com.google.javascript.jscomp.graph.GraphNode; //导入方法依赖的package包/类
@Override
public boolean shouldTraverse(NodeTraversal t, Node n, Node parent) {
if (!shouldCheck(n)) {
return false;
}
if (scopeNeedsInit) {
initScope(t.getControlFlowGraph());
scopeNeedsInit = false;
}
GraphNode<Node, Branch> gNode = t.getControlFlowGraph().getNode(n);
if (gNode != null && gNode.getAnnotation() != GraphReachability.REACHABLE) {
// Only report error when there are some line number informations.
// There are synthetic nodes with no line number informations, nodes
// introduce by other passes (although not likely since this pass should
// be executed early) or some rhino bug.
if (n.getLineno() != -1 &&
// Allow spurious semi-colons and spurious breaks.
n.getType() != Token.EMPTY && n.getType() != Token.BREAK) {
compiler.report(t.makeError(n, level, UNREACHABLE_CODE));
// From now on, we are going to assume the user fixed the error and not
// give more warning related to code section reachable from this node.
new GraphReachability<Node, ControlFlowGraph.Branch>(
t.getControlFlowGraph()).recompute(n);
// Saves time by not traversing children.
return false;
}
}
return true;
}
示例13: verifyInHas
import com.google.javascript.jscomp.graph.GraphNode; //导入方法依赖的package包/类
static void verifyInHas(GraphNode<Instruction, Branch> node, Variable var,
Integer constant) {
FlowState<ConstPropLatticeElement> fState = node.getAnnotation();
assertEquals(constant, fState.getIn().constMap.get(var));
}
示例14: verifyOutHas
import com.google.javascript.jscomp.graph.GraphNode; //导入方法依赖的package包/类
static void verifyOutHas(GraphNode<Instruction, Branch> node, Variable var,
Integer constant) {
FlowState<ConstPropLatticeElement> fState = node.getAnnotation();
assertEquals(constant, fState.getOut().constMap.get(var));
}
示例15: verifyBranchedInHas
import com.google.javascript.jscomp.graph.GraphNode; //导入方法依赖的package包/类
static void verifyBranchedInHas(GraphNode<Instruction, Branch> node,
Variable var, Integer constant) {
BranchedFlowState<ConstPropLatticeElement> fState = node.getAnnotation();
assertEquals(constant, fState.getIn().constMap.get(var));
}