Java Code Examples for com.google.javascript.rhino.JSDocInfo#hasTypedefType()

The following examples show how to use com.google.javascript.rhino.JSDocInfo#hasTypedefType() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Closure_70_TypedScopeCreator_t.java    From coming with MIT License 6 votes vote down vote up
private void identifyNameNode(
    Node nameNode, Node valueNode, JSDocInfo info) {
  if (nameNode.isQualifiedName()) {
    if (info != null) {
      if (info.hasEnumParameterType()) {
        registry.identifyNonNullableName(nameNode.getQualifiedName());
      } else if (info.hasTypedefType()) {
        registry.identifyNonNullableName(nameNode.getQualifiedName());
      }
    }

    if (valueNode != null &&
        LEGACY_TYPEDEF.equals(valueNode.getQualifiedName())) {
      registry.identifyNonNullableName(nameNode.getQualifiedName());
    }
  }
}
 
Example 2
Source File: TypeConversionPass.java    From clutz with MIT License 6 votes vote down vote up
private void createTypeAlias(Node n, Node parent) {
  JSDocInfo bestJSDocInfo = NodeUtil.getBestJSDocInfo(n);
  if (bestJSDocInfo != null && bestJSDocInfo.hasTypedefType()) {
    String name;
    switch (n.getToken()) {
      case NAME:
        name = n.getString();
        break;
      case GETPROP:
        // Inner typedef
        name = n.getSecondChild().getString();
        break;
      default:
        name = n.getFirstChild().getString();
        break;
    }
    Node typeDef = Node.newString(Token.TYPE_ALIAS, name);
    nodeComments.moveComment(n, typeDef);
    types.put(name, typeDef);
    typeDef.setJSDocInfo(bestJSDocInfo);
    replaceExpressionOrAssignment(n, parent, typeDef);
  }
}
 
Example 3
Source File: Closure_17_TypedScopeCreator_t.java    From coming with MIT License 5 votes vote down vote up
/**
 * Handle typedefs.
 * @param t The current traversal.
 * @param candidate A qualified name node.
 * @param info JSDoc comments.
 */
private void checkForTypedef(
    NodeTraversal t, Node candidate, JSDocInfo info) {
  if (info == null || !info.hasTypedefType()) {
    return;
  }

  String typedef = candidate.getQualifiedName();
  if (typedef == null) {
    return;
  }

  // TODO(nicksantos|user): This is a terrible, terrible hack
  // to bail out on recursive typedefs. We'll eventually need
  // to handle these properly.
  typeRegistry.declareType(typedef, getNativeType(UNKNOWN_TYPE));

  JSType realType = info.getTypedefType().evaluate(scope, typeRegistry);
  if (realType == null) {
    compiler.report(
        JSError.make(
            t.getSourceName(), candidate, MALFORMED_TYPEDEF, typedef));
  }

  typeRegistry.overwriteDeclaredType(typedef, realType);
  if (candidate.isGetProp()) {
    defineSlot(candidate, candidate.getParent(),
        getNativeType(NO_TYPE), false);
  }
}
 
Example 4
Source File: TypedScopeCreator.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
private void identifyNameNode(
    Node nameNode, Node valueNode, JSDocInfo info) {
  if (nameNode.isQualifiedName()) {
    if (info != null) {
      if (info.hasEnumParameterType()) {
        registry.identifyNonNullableName(nameNode.getQualifiedName());
      } else if (info.hasTypedefType()) {
        registry.identifyNonNullableName(nameNode.getQualifiedName());
      }
    }
  }
}
 
Example 5
Source File: Closure_95_TypedScopeCreator_s.java    From coming with MIT License 5 votes vote down vote up
/**
 * Handle typedefs.
 * @param t The current traversal.
 * @param candidate A qualified name node.
 * @param info JSDoc comments.
 */
private void checkForTypedef(
    NodeTraversal t, Node candidate, JSDocInfo info) {
  if (info == null || !info.hasTypedefType()) {
    return;
  }

  String typedef = candidate.getQualifiedName();
  if (typedef == null) {
    return;
  }

  // TODO(nicksantos|user): This is a terrible, terrible hack
  // to bail out on recusive typedefs. We'll eventually need
  // to handle these properly.
  typeRegistry.forwardDeclareType(typedef);

  JSType realType = info.getTypedefType().evaluate(scope, typeRegistry);
  if (realType == null) {
    compiler.report(
        JSError.make(
            t.getSourceName(), candidate, MALFORMED_TYPEDEF, typedef));
  }

  typeRegistry.declareType(typedef, realType);
  if (candidate.getType() == Token.GETPROP) {
    defineSlot(candidate, candidate.getParent(),
        getNativeType(NO_TYPE), false);
  }
}
 
Example 6
Source File: Closure_48_TypedScopeCreator_s.java    From coming with MIT License 5 votes vote down vote up
private void identifyNameNode(
    Node nameNode, Node valueNode, JSDocInfo info) {
  if (nameNode.isQualifiedName()) {
    if (info != null) {
      if (info.hasEnumParameterType()) {
        registry.identifyNonNullableName(nameNode.getQualifiedName());
      } else if (info.hasTypedefType()) {
        registry.identifyNonNullableName(nameNode.getQualifiedName());
      }
    }
  }
}
 
Example 7
Source File: Closure_48_TypedScopeCreator_t.java    From coming with MIT License 5 votes vote down vote up
/**
 * Handle typedefs.
 * @param t The current traversal.
 * @param candidate A qualified name node.
 * @param info JSDoc comments.
 */
private void checkForTypedef(
    NodeTraversal t, Node candidate, JSDocInfo info) {
  if (info == null || !info.hasTypedefType()) {
    return;
  }

  String typedef = candidate.getQualifiedName();
  if (typedef == null) {
    return;
  }

  // TODO(nicksantos|user): This is a terrible, terrible hack
  // to bail out on recusive typedefs. We'll eventually need
  // to handle these properly.
  typeRegistry.declareType(typedef, getNativeType(UNKNOWN_TYPE));

  JSType realType = info.getTypedefType().evaluate(scope, typeRegistry);
  if (realType == null) {
    compiler.report(
        JSError.make(
            t.getSourceName(), candidate, MALFORMED_TYPEDEF, typedef));
  }

  typeRegistry.overwriteDeclaredType(typedef, realType);
  if (candidate.isGetProp()) {
    defineSlot(candidate, candidate.getParent(),
        getNativeType(NO_TYPE), false);
  }
}
 
Example 8
Source File: Closure_48_TypedScopeCreator_t.java    From coming with MIT License 5 votes vote down vote up
private void identifyNameNode(
    Node nameNode, Node valueNode, JSDocInfo info) {
  if (nameNode.isQualifiedName()) {
    if (info != null) {
      if (info.hasEnumParameterType()) {
        registry.identifyNonNullableName(nameNode.getQualifiedName());
      } else if (info.hasTypedefType()) {
        registry.identifyNonNullableName(nameNode.getQualifiedName());
      }
    }
  }
}
 
Example 9
Source File: Closure_70_TypedScopeCreator_s.java    From coming with MIT License 5 votes vote down vote up
/**
 * Handle typedefs.
 * @param t The current traversal.
 * @param candidate A qualified name node.
 * @param info JSDoc comments.
 */
private void checkForTypedef(
    NodeTraversal t, Node candidate, JSDocInfo info) {
  if (info == null || !info.hasTypedefType()) {
    return;
  }

  String typedef = candidate.getQualifiedName();
  if (typedef == null) {
    return;
  }

  // TODO(nicksantos|user): This is a terrible, terrible hack
  // to bail out on recusive typedefs. We'll eventually need
  // to handle these properly.
  typeRegistry.declareType(typedef, getNativeType(UNKNOWN_TYPE));

  JSType realType = info.getTypedefType().evaluate(scope, typeRegistry);
  if (realType == null) {
    compiler.report(
        JSError.make(
            t.getSourceName(), candidate, MALFORMED_TYPEDEF, typedef));
  }

  typeRegistry.overwriteDeclaredType(typedef, realType);
  if (candidate.getType() == Token.GETPROP) {
    defineSlot(candidate, candidate.getParent(),
        getNativeType(NO_TYPE), false);
  }
}
 
Example 10
Source File: CheckGlobalNames.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
private boolean isTypedef(Ref ref) {
  // If this is an annotated EXPR-GET, don't do anything.
  Node parent = ref.node.getParent();
  if (parent.isExprResult()) {
    JSDocInfo info = ref.node.getJSDocInfo();
    if (info != null && info.hasTypedefType()) {
      return true;
    }
  }
  return false;
}
 
Example 11
Source File: Closure_70_TypedScopeCreator_t.java    From coming with MIT License 5 votes vote down vote up
/**
 * Handle typedefs.
 * @param t The current traversal.
 * @param candidate A qualified name node.
 * @param info JSDoc comments.
 */
private void checkForTypedef(
    NodeTraversal t, Node candidate, JSDocInfo info) {
  if (info == null || !info.hasTypedefType()) {
    return;
  }

  String typedef = candidate.getQualifiedName();
  if (typedef == null) {
    return;
  }

  // TODO(nicksantos|user): This is a terrible, terrible hack
  // to bail out on recusive typedefs. We'll eventually need
  // to handle these properly.
  typeRegistry.declareType(typedef, getNativeType(UNKNOWN_TYPE));

  JSType realType = info.getTypedefType().evaluate(scope, typeRegistry);
  if (realType == null) {
    compiler.report(
        JSError.make(
            t.getSourceName(), candidate, MALFORMED_TYPEDEF, typedef));
  }

  typeRegistry.overwriteDeclaredType(typedef, realType);
  if (candidate.getType() == Token.GETPROP) {
    defineSlot(candidate, candidate.getParent(),
        getNativeType(NO_TYPE), false);
  }
}
 
Example 12
Source File: Closure_17_TypedScopeCreator_t.java    From coming with MIT License 5 votes vote down vote up
private void identifyNameNode(
    Node nameNode, Node valueNode, JSDocInfo info) {
  if (nameNode.isQualifiedName()) {
    if (info != null) {
      if (info.hasEnumParameterType()) {
        registry.identifyNonNullableName(nameNode.getQualifiedName());
      } else if (info.hasTypedefType()) {
        registry.identifyNonNullableName(nameNode.getQualifiedName());
      }
    }
  }
}
 
Example 13
Source File: Closure_43_TypedScopeCreator_s.java    From coming with MIT License 5 votes vote down vote up
private void identifyNameNode(
    Node nameNode, Node valueNode, JSDocInfo info) {
  if (nameNode.isQualifiedName()) {
    if (info != null) {
      if (info.hasEnumParameterType()) {
        registry.identifyNonNullableName(nameNode.getQualifiedName());
      } else if (info.hasTypedefType()) {
        registry.identifyNonNullableName(nameNode.getQualifiedName());
      }
    }
  }
}
 
Example 14
Source File: Closure_54_TypedScopeCreator_s.java    From coming with MIT License 5 votes vote down vote up
private void identifyNameNode(
    Node nameNode, Node valueNode, JSDocInfo info) {
  if (nameNode.isQualifiedName()) {
    if (info != null) {
      if (info.hasEnumParameterType()) {
        registry.identifyNonNullableName(nameNode.getQualifiedName());
      } else if (info.hasTypedefType()) {
        registry.identifyNonNullableName(nameNode.getQualifiedName());
      }
    }
  }
}
 
Example 15
Source File: Nopol2017_0010_t.java    From coming with MIT License 5 votes vote down vote up
/**
 * Handles a typedef definition for a goog.provided name.
 * @param n EXPR_RESULT node.
 */
private void handleTypedefDefinition(
    NodeTraversal t, Node n) {
  JSDocInfo info = n.getFirstChild().getJSDocInfo();
  if (t.inGlobalScope() && info != null && info.hasTypedefType()) {
    String name = n.getFirstChild().getQualifiedName();
    if (name != null) {
      ProvidedName pn = providedNames.get(name);
      if (pn != null) {
        pn.addDefinition(n, t.getModule());
      }
    }
  }
}
 
Example 16
Source File: Nopol2017_0010_s.java    From coming with MIT License 5 votes vote down vote up
/**
 * Handles a typedef definition for a goog.provided name.
 * @param n EXPR_RESULT node.
 */
private void handleTypedefDefinition(
    NodeTraversal t, Node n) {
  JSDocInfo info = n.getFirstChild().getJSDocInfo();
  if (t.inGlobalScope() && info != null && info.hasTypedefType()) {
    String name = n.getFirstChild().getQualifiedName();
    if (name != null) {
      ProvidedName pn = providedNames.get(name);
      if (pn != null) {
        pn.addDefinition(n, t.getModule());
      }
    }
  }
}
 
Example 17
Source File: Nopol2017_0027_t.java    From coming with MIT License 5 votes vote down vote up
/**
 * Handle typedefs.
 * @param t The current traversal.
 * @param candidate A qualified name node.
 * @param info JSDoc comments.
 */
private void checkForTypedef(
    NodeTraversal t, Node candidate, JSDocInfo info) {
  if (info == null || !info.hasTypedefType()) {
    return;
  }

  String typedef = candidate.getQualifiedName();
  if (typedef == null) {
    return;
  }

  // TODO(nicksantos|user): This is a terrible, terrible hack
  // to bail out on recursive typedefs. We'll eventually need
  // to handle these properly.
  typeRegistry.declareType(typedef, getNativeType(UNKNOWN_TYPE));

  JSType realType = info.getTypedefType().evaluate(scope, typeRegistry);
  if (realType == null) {
    compiler.report(
        JSError.make(
            t.getSourceName(), candidate, MALFORMED_TYPEDEF, typedef));
  }

  typeRegistry.overwriteDeclaredType(typedef, realType);
  if (candidate.isGetProp()) {
    defineSlot(candidate, candidate.getParent(),
        getNativeType(NO_TYPE), false);
  }
}
 
Example 18
Source File: Closure_43_TypedScopeCreator_s.java    From coming with MIT License 5 votes vote down vote up
/**
 * Handle typedefs.
 * @param t The current traversal.
 * @param candidate A qualified name node.
 * @param info JSDoc comments.
 */
private void checkForTypedef(
    NodeTraversal t, Node candidate, JSDocInfo info) {
  if (info == null || !info.hasTypedefType()) {
    return;
  }

  String typedef = candidate.getQualifiedName();
  if (typedef == null) {
    return;
  }

  // TODO(nicksantos|user): This is a terrible, terrible hack
  // to bail out on recusive typedefs. We'll eventually need
  // to handle these properly.
  typeRegistry.declareType(typedef, getNativeType(UNKNOWN_TYPE));

  JSType realType = info.getTypedefType().evaluate(scope, typeRegistry);
  if (realType == null) {
    compiler.report(
        JSError.make(
            t.getSourceName(), candidate, MALFORMED_TYPEDEF, typedef));
  }

  typeRegistry.overwriteDeclaredType(typedef, realType);
  if (candidate.isGetProp()) {
    defineSlot(candidate, candidate.getParent(),
        getNativeType(NO_TYPE), false);
  }
}
 
Example 19
Source File: Closure_95_TypedScopeCreator_t.java    From coming with MIT License 5 votes vote down vote up
/**
 * Handle typedefs.
 * @param t The current traversal.
 * @param candidate A qualified name node.
 * @param info JSDoc comments.
 */
private void checkForTypedef(
    NodeTraversal t, Node candidate, JSDocInfo info) {
  if (info == null || !info.hasTypedefType()) {
    return;
  }

  String typedef = candidate.getQualifiedName();
  if (typedef == null) {
    return;
  }

  // TODO(nicksantos|user): This is a terrible, terrible hack
  // to bail out on recusive typedefs. We'll eventually need
  // to handle these properly.
  typeRegistry.forwardDeclareType(typedef);

  JSType realType = info.getTypedefType().evaluate(scope, typeRegistry);
  if (realType == null) {
    compiler.report(
        JSError.make(
            t.getSourceName(), candidate, MALFORMED_TYPEDEF, typedef));
  }

  typeRegistry.declareType(typedef, realType);
  if (candidate.getType() == Token.GETPROP) {
    defineSlot(candidate, candidate.getParent(),
        getNativeType(NO_TYPE), false);
  }
}
 
Example 20
Source File: Closure_113_ProcessClosurePrimitives_t.java    From coming with MIT License 5 votes vote down vote up
/**
 * Handles a typedef definition for a goog.provided name.
 * @param n EXPR_RESULT node.
 */
private void handleTypedefDefinition(
    NodeTraversal t, Node n) {
  JSDocInfo info = n.getFirstChild().getJSDocInfo();
  if (t.inGlobalScope() && info != null && info.hasTypedefType()) {
    String name = n.getFirstChild().getQualifiedName();
    if (name != null) {
      ProvidedName pn = providedNames.get(name);
      if (pn != null) {
        pn.addDefinition(n, t.getModule());
      }
    }
  }
}