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

The following examples show how to use com.google.javascript.rhino.JSDocInfo#hasReturnType() . 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_90_FunctionTypeBuilder_s.java    From coming with MIT License 5 votes vote down vote up
/**
 * Infer the return type from JSDocInfo.
 */
FunctionTypeBuilder inferReturnType(@Nullable JSDocInfo info) {
  if (info != null && info.hasReturnType()) {
    returnType = info.getReturnType().evaluate(scope, typeRegistry);
    returnTypeInferred = false;
  }

  if (templateTypeName != null &&
      returnType != null &&
      returnType.restrictByNotNullOrUndefined().isTemplateType()) {
    reportError(TEMPLATE_TYPE_EXPECTED, fnName);
  }
  return this;
}
 
Example 2
Source File: Closure_90_FunctionTypeBuilder_s.java    From coming with MIT License 5 votes vote down vote up
/**
 * Determines whether the given jsdoc info declares a function type.
 */
static boolean isFunctionTypeDeclaration(JSDocInfo info) {
  return info.getParameterCount() > 0 ||
      info.hasReturnType() ||
      info.hasThisType() ||
      info.isConstructor() ||
      info.isInterface();
}
 
Example 3
Source File: Closure_90_FunctionTypeBuilder_t.java    From coming with MIT License 5 votes vote down vote up
/**
 * Infer the return type from JSDocInfo.
 */
FunctionTypeBuilder inferReturnType(@Nullable JSDocInfo info) {
  if (info != null && info.hasReturnType()) {
    returnType = info.getReturnType().evaluate(scope, typeRegistry);
    returnTypeInferred = false;
  }

  if (templateTypeName != null &&
      returnType != null &&
      returnType.restrictByNotNullOrUndefined().isTemplateType()) {
    reportError(TEMPLATE_TYPE_EXPECTED, fnName);
  }
  return this;
}
 
Example 4
Source File: Closure_90_FunctionTypeBuilder_t.java    From coming with MIT License 5 votes vote down vote up
/**
 * Determines whether the given jsdoc info declares a function type.
 */
static boolean isFunctionTypeDeclaration(JSDocInfo info) {
  return info.getParameterCount() > 0 ||
      info.hasReturnType() ||
      info.hasThisType() ||
      info.isConstructor() ||
      info.isInterface();
}
 
Example 5
Source File: Closure_41_FunctionTypeBuilder_s.java    From coming with MIT License 5 votes vote down vote up
/**
 * Infer the return type from JSDocInfo.
 */
FunctionTypeBuilder inferReturnType(@Nullable JSDocInfo info) {
  if (info != null && info.hasReturnType()) {
    returnType = info.getReturnType().evaluate(scope, typeRegistry);
    returnTypeInferred = false;
  }

  if (templateTypeName != null &&
      returnType != null &&
      returnType.restrictByNotNullOrUndefined().isTemplateType()) {
    reportError(TEMPLATE_TYPE_EXPECTED, fnName);
  }
  return this;
}
 
Example 6
Source File: Closure_41_FunctionTypeBuilder_s.java    From coming with MIT License 5 votes vote down vote up
/**
 * Determines whether the given jsdoc info declares a function type.
 */
static boolean isFunctionTypeDeclaration(JSDocInfo info) {
  return info.getParameterCount() > 0 ||
      info.hasReturnType() ||
      info.hasThisType() ||
      info.isConstructor() ||
      info.isInterface();
}
 
Example 7
Source File: Closure_41_FunctionTypeBuilder_t.java    From coming with MIT License 5 votes vote down vote up
/**
 * Infer the return type from JSDocInfo.
 */
FunctionTypeBuilder inferReturnType(@Nullable JSDocInfo info) {
  if (info != null && info.hasReturnType()) {
    returnType = info.getReturnType().evaluate(scope, typeRegistry);
    returnTypeInferred = false;
  }

  if (templateTypeName != null &&
      returnType != null &&
      returnType.restrictByNotNullOrUndefined().isTemplateType()) {
    reportError(TEMPLATE_TYPE_EXPECTED, fnName);
  }
  return this;
}
 
Example 8
Source File: Closure_41_FunctionTypeBuilder_t.java    From coming with MIT License 5 votes vote down vote up
/**
 * Determines whether the given jsdoc info declares a function type.
 */
static boolean isFunctionTypeDeclaration(JSDocInfo info) {
  return info.getParameterCount() > 0 ||
      info.hasReturnType() ||
      info.hasThisType() ||
      info.isConstructor() ||
      info.isInterface();
}
 
Example 9
Source File: FunctionTypeBuilder.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Infer the return type from JSDocInfo.
 */
FunctionTypeBuilder inferReturnType(@Nullable JSDocInfo info) {
  if (info != null && info.hasReturnType()) {
    returnType = info.getReturnType().evaluate(scope, typeRegistry);
    returnTypeInferred = false;
  }

  return this;
}
 
Example 10
Source File: FunctionTypeBuilder.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Determines whether the given JsDoc info declares a function type.
 */
static boolean isFunctionTypeDeclaration(JSDocInfo info) {
  return info.getParameterCount() > 0 ||
      info.hasReturnType() ||
      info.hasThisType() ||
      info.isConstructor() ||
      info.isInterface();
}