Class FunctionType
java.lang.Object
com.google.javascript.rhino.jstype.JSType
com.google.javascript.rhino.jstype.ObjectType
com.google.javascript.rhino.jstype.FunctionType
- All Implemented Interfaces:
StaticScope<JSType>,Serializable
- Direct Known Subclasses:
NoObjectType
This derived type provides extended information about a function, including
its return type and argument types.
Note: the parameters list is the LP node that is the parent of the actual NAME node containing the parsed argument list (annotated with JSDOC_TYPE_PROP's for the compile-time type of each argument.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class com.google.javascript.rhino.jstype.JSType
JSType.TypePair -
Field Summary
Fields inherited from class com.google.javascript.rhino.jstype.JSType
EMPTY_TYPE_COMPONENT, ENUMDECL, NOT_A_CLASS, NOT_A_TYPE, NOT_ENUMDECL, templateTypeMap, UNKNOWN_NAME -
Method Summary
Modifier and TypeMethodDescriptionbooleanThis predicate is used to test whether a given type can be used as the 'function' in a function call.voidClear cached values.Create a new constructor with the parameters and return type stripped.Returns all extended interfaces declared by an interfaces or its super- interfaces.Returns all interfaces implemented by a class or its superclass and any superclasses for any of those interfaces.getBindReturnType(int argsToBind) Get the return value of calling "bind" on this function with the specified number of arguments.Gets this object's constructor.Gets the interfaces extended by the interface associated with this type.Gets the interfaces implemented by the ctor associated with this type.Returns interfaces directly extended by an interfaceintReturns the number of interfaces directly extended by an interfaceReturns interfaces implemented directly by a class or its superclass.Gets the implicit prototype (a.k.a.Gets the type of instance of this function.intGets the maximum number of arguments that this function requires, or Integer.MAX_VALUE if this is a variable argument function.intGets the minimum number of arguments that this function requires.Gets the owner of this if it's a function prototype.Returns interfaces directly implemented by the class.Includes the prototype iff someone has created it.Gets an LP node that contains all params.getPropertyType(String name) Gets the property type of the property whose name is given.Gets theprototypeproperty of this function type.Gets the reference name for this object.Default getSlot implementation.Gets the source node or null if this is an unknown function.Returns a list of types that are subtypes of this type.Given a constructor or an interface type, get its superclass constructor ornullif none exists.static ObjectTypegetTopDefiningInterface(ObjectType type, String propertyName) Given an interface and a property, finds the top-most super interface that has the property defined (including this interface).getTopMostDefiningType(String propertyName) Given a constructor or an interface type and a property, finds the top-most superclass that has the property defined (including this constructor).Gets the type ofthisin this function.booleanbooleanReturns true if any cached values have been set for this type.booleanhasEqualCallType(FunctionType otherType) inthashCode()booleanbooleanReturns whether this function type has an instance type.booleanReturns true if the object is named.booleanWhether this type is aFunctionTypethat is a constructor or a named type that points to such a type.booleanWhether this type is an Instance object of some constructor.booleanWhether this type is aFunctionTypethat is an interface or a named type that points to such a type.booleanWhether this is a built-in object.booleanWhether this type is aFunctionTypethat is an ordinary function or a named type that points to such a type.booleanbooleanA function is a subtype of another if their call methods are related via subtyping andthisis a subtype ofthatwith regard to the prototype chain.booleanWhen a class B inherits from A and A is annotated as a dict, then B automatically gets the annotation, even if B's constructor is not explicitly annotated.booleanWhen a class B inherits from A and A is annotated as a struct, then B automatically gets the annotation, even if B's constructor is not explicitly annotated.voidmatchConstraint(JSType constraint) Modify this type so that it matches the specified type.booleanThis predicate is used to test whether a given type can appear in a numeric context, such as an operand of a multiply operator.booleanThis predicate is used to test whether a given type can appear in anObjectcontext, such as the expression in a with statement.booleanThis predicate is used to test whether a given type can appear in aStringcontext, such as an operand of a string concat (+) operator.voidmatchRecordTypeConstraint(ObjectType constraintObj) booleanremoveProperty(String name) Removes the declared or inferred property from this ObjectType.voidsetDict()voidsetExtendedInterfaces(List<ObjectType> extendedInterfaces) voidsetImplementedInterfaces(List<ObjectType> implementedInterfaces) voidsetPropertyJSDocInfo(String propertyName, JSDocInfo info) Sets the docInfo for the specified property from theJSDocInfoon its definition.voidsetPrototypeBasedOn(ObjectType baseType) Sets the prototype, creating the prototype object from the given base type.voidSets the source node.voidA hash code function for diagnosing complicated issues around type-identity.Downcasts this to a FunctionType, or returns null if this is not a function.Turn an object type to its corresponding scalar type.<T> TVisit this type with the given visitor.Methods inherited from class com.google.javascript.rhino.jstype.ObjectType
cast, createDelegateSuffix, defineDeclaredProperty, defineInferredProperty, defineSynthesizedProperty, findPropertyType, getDisplayName, getJSDocInfo, getNormalizedReferenceName, getOwnPropertyJSDocInfo, getOwnSlot, getParentScope, getPossibleToBooleanOutcomes, getPropertiesCount, getPropertyNames, getPropertyNode, getRootNode, getTemplateTypes, hasOwnProperty, hasProperty, isFunctionPrototypeType, isObject, isPropertyInExterns, isPropertyTypeDeclared, isPropertyTypeInferred, isUnknownType, setJSDocInfo, testForEqualityMethods inherited from class com.google.javascript.rhino.jstype.JSType
autobox, autoboxesTo, canCastTo, canTestForEqualityWith, canTestForShallowEqualityWith, clearResolved, collapseUnion, dereference, differsFrom, equals, forceResolve, getGreatestSubtype, getLeastSupertype, getRestrictedTypeGivenToBooleanOutcome, getTemplateTypeMap, getTypesUnderEquality, getTypesUnderInequality, getTypesUnderShallowEquality, getTypesUnderShallowInequality, hasAnyTemplateTypes, hasDisplayName, isAllType, isArrayType, isBooleanObjectType, isBooleanValueType, isCheckedUnknownType, isDateType, isDict, isEmptyType, isEnumElementType, isEnumType, isEquivalent, isEquivalentTo, isFunctionType, isGlobalThisType, isInvariant, isNominalConstructor, isNominalType, isNoObjectType, isNoResolvedType, isNoType, isNullable, isNullType, isNumber, isNumberObjectType, isNumberValueType, isRecordType, isRegexpType, isResolved, isString, isStringObjectType, isStringValueType, isStruct, isTemplateType, isTemplatizedType, isUnionType, isVoidType, matchesInt32Context, matchesUint32Context, resolve, restrictByNotNullOrUndefined, setValidator, toAnnotationString, toMaybeEnumElementType, toMaybeEnumType, toMaybeFunctionType, toMaybeTemplateType, toMaybeTemplateType, toMaybeTemplatizedType, toMaybeTemplatizedType, toMaybeUnionType, toObjectType, toString
-
Method Details
-
isInstanceType
public boolean isInstanceType()Description copied from class:JSTypeWhether this type is an Instance object of some constructor. Does not necessarily mean this is anInstanceObjectType.- Overrides:
isInstanceTypein classJSType
-
isConstructor
public boolean isConstructor()Description copied from class:JSTypeWhether this type is aFunctionTypethat is a constructor or a named type that points to such a type.- Overrides:
isConstructorin classJSType
-
isInterface
public boolean isInterface()Description copied from class:JSTypeWhether this type is aFunctionTypethat is an interface or a named type that points to such a type.- Overrides:
isInterfacein classJSType
-
isOrdinaryFunction
public boolean isOrdinaryFunction()Description copied from class:JSTypeWhether this type is aFunctionTypethat is an ordinary function or a named type that points to such a type.- Overrides:
isOrdinaryFunctionin classJSType
-
makesStructs
public boolean makesStructs()When a class B inherits from A and A is annotated as a struct, then B automatically gets the annotation, even if B's constructor is not explicitly annotated. -
makesDicts
public boolean makesDicts()When a class B inherits from A and A is annotated as a dict, then B automatically gets the annotation, even if B's constructor is not explicitly annotated. -
setStruct
public void setStruct() -
setDict
public void setDict() -
toMaybeFunctionType
Description copied from class:JSTypeDowncasts this to a FunctionType, or returns null if this is not a function. For the purposes of this function, we define a MaybeFunctionType as any type in the sub-lattice { x | LEAST_FUNCTION_TYPE invalid input: '<'= x invalid input: '<'= GREATEST_FUNCTION_TYPE } This definition excludes bottom types like NoType and NoObjectType. This definition is somewhat arbitrary and axiomatic, but this is the definition that makes the most sense for the most callers.- Overrides:
toMaybeFunctionTypein classJSType
-
canBeCalled
public boolean canBeCalled()Description copied from class:JSTypeThis predicate is used to test whether a given type can be used as the 'function' in a function call.- Returns:
trueif this type might be callable.
-
hasImplementedInterfaces
public boolean hasImplementedInterfaces() -
getParameters
-
getParametersNode
Gets an LP node that contains all params. May be null. -
getMinArguments
public int getMinArguments()Gets the minimum number of arguments that this function requires. -
getMaxArguments
public int getMaxArguments()Gets the maximum number of arguments that this function requires, or Integer.MAX_VALUE if this is a variable argument function. -
getReturnType
-
isReturnTypeInferred
public boolean isReturnTypeInferred() -
getSlot
Description copied from class:ObjectTypeDefault getSlot implementation. This gets overridden by FunctionType for lazily-resolved prototypes.- Specified by:
getSlotin interfaceStaticScope<JSType>- Overrides:
getSlotin classObjectType- Parameters:
name- The name of the variable slot to look up.- Returns:
- The defined slot for the variable, or
nullif no definition exists.
-
getOwnPropertyNames
Includes the prototype iff someone has created it. We do not want to expose the prototype for ordinary functions.- Overrides:
getOwnPropertyNamesin classObjectType
-
getPrototype
Gets theprototypeproperty of this function type. This is equivalent to(ObjectType) getPropertyType("prototype"). -
setPrototypeBasedOn
Sets the prototype, creating the prototype object from the given base type.- Parameters:
baseType- The base type.
-
getAllImplementedInterfaces
Returns all interfaces implemented by a class or its superclass and any superclasses for any of those interfaces. If this is called before all types are resolved, it may return an incomplete set. -
getImplementedInterfaces
Returns interfaces implemented directly by a class or its superclass. -
getOwnImplementedInterfaces
Returns interfaces directly implemented by the class. -
setImplementedInterfaces
-
getAllExtendedInterfaces
Returns all extended interfaces declared by an interfaces or its super- interfaces. If this is called before all types are resolved, it may return an incomplete set. -
getExtendedInterfaces
Returns interfaces directly extended by an interface -
getExtendedInterfacesCount
public int getExtendedInterfacesCount()Returns the number of interfaces directly extended by an interface -
setExtendedInterfaces
public void setExtendedInterfaces(List<ObjectType> extendedInterfaces) throws UnsupportedOperationException - Throws:
UnsupportedOperationException
-
getPropertyType
Description copied from class:ObjectTypeGets the property type of the property whose name is given. If the underlying object does not have this property, the Unknown type is returned to indicate that no information is available on this property. This gets overridden by FunctionType for lazily-resolved call() and bind() functions.- Overrides:
getPropertyTypein classObjectType- Returns:
- the property's type or
UnknownType. This method never returnsnull.
-
getBindReturnType
Get the return value of calling "bind" on this function with the specified number of arguments. If -1 is passed, then we will return a result that accepts any parameters. -
getSuperClassConstructor
Given a constructor or an interface type, get its superclass constructor ornullif none exists. -
getTopDefiningInterface
Given an interface and a property, finds the top-most super interface that has the property defined (including this interface). -
getTopMostDefiningType
Given a constructor or an interface type and a property, finds the top-most superclass that has the property defined (including this constructor). -
hashCode
public int hashCode() -
hasEqualCallType
-
isSubtype
A function is a subtype of another if their call methods are related via subtyping andthisis a subtype ofthatwith regard to the prototype chain.- Returns:
this <: that
-
visit
Description copied from class:JSTypeVisit this type with the given visitor.- Overrides:
visitin classObjectType- Returns:
- the value returned by the visitor
- See Also:
-
getInstanceType
Gets the type of instance of this function.- Throws:
IllegalStateException- if this function is not a constructor (seeisConstructor()).
-
hasInstanceType
public boolean hasInstanceType()Returns whether this function type has an instance type. -
getTypeOfThis
Gets the type ofthisin this function.- Specified by:
getTypeOfThisin interfaceStaticScope<JSType>- Overrides:
getTypeOfThisin classObjectType
-
getSource
Gets the source node or null if this is an unknown function. -
setSource
Sets the source node. -
clearCachedValues
public void clearCachedValues()Description copied from class:ObjectTypeClear cached values. Should be called before making changes to a prototype that may have been changed since creation.- Overrides:
clearCachedValuesin classObjectType
-
getSubTypes
Returns a list of types that are subtypes of this type. This is only valid for constructor functions, and may be null. This allows a downward traversal of the subtype graph. -
hasCachedValues
public boolean hasCachedValues()Description copied from class:ObjectTypeReturns true if any cached values have been set for this type. If true, then the prototype chain should not be changed, as it might invalidate the cached values. -
toDebugHashCodeString
Description copied from class:JSTypeA hash code function for diagnosing complicated issues around type-identity.- Overrides:
toDebugHashCodeStringin classJSType
-
cloneWithoutArrowType
Create a new constructor with the parameters and return type stripped. -
hasAnyTemplateTypesInternal
public boolean hasAnyTemplateTypesInternal() -
removeProperty
Description copied from class:ObjectTypeRemoves the declared or inferred property from this ObjectType.- Overrides:
removePropertyin classObjectType- Parameters:
name- the property's name- Returns:
- true if the property was removed successfully. False if the property did not exist, or could not be removed.
-
setPropertyJSDocInfo
Description copied from class:ObjectTypeSets the docInfo for the specified property from theJSDocInfoon its definition.- Overrides:
setPropertyJSDocInfoin classObjectType- Parameters:
info-JSDocInfofor the property definition. May benull.
-
matchesNumberContext
public boolean matchesNumberContext()Description copied from class:JSTypeThis predicate is used to test whether a given type can appear in a numeric context, such as an operand of a multiply operator.- Overrides:
matchesNumberContextin classJSType
-
matchesStringContext
public boolean matchesStringContext()Description copied from class:JSTypeThis predicate is used to test whether a given type can appear in aStringcontext, such as an operand of a string concat (+) operator. All types have at least the potential for converting toString. When we add externally defined types, such as a browser OM, we may choose to add types that do not automatically convert toString.- Overrides:
matchesStringContextin classJSType
-
unboxesTo
Description copied from class:JSTypeTurn an object type to its corresponding scalar type. -
matchesObjectContext
public boolean matchesObjectContext()Description copied from class:JSTypeThis predicate is used to test whether a given type can appear in anObjectcontext, such as the expression in a with statement. Most types we will encounter, except notablynull, have at least the potential for converting toObject. Host defined objects can get peculiar.- Overrides:
matchesObjectContextin classJSType
-
getConstructor
Description copied from class:ObjectTypeGets this object's constructor.- Specified by:
getConstructorin classObjectType- Returns:
- this object's constructor or
nullif it is a native object (constructed natively v.s. by instantiation of a function)
-
getImplicitPrototype
Description copied from class:ObjectTypeGets the implicit prototype (a.k.a. the[[Prototype]]property).- Specified by:
getImplicitPrototypein classObjectType
-
getReferenceName
Description copied from class:ObjectTypeGets the reference name for this object. This includes named types like constructors, prototypes, and enums. It notably does not include literal types like strings and booleans and structural types.- Specified by:
getReferenceNamein classObjectType- Returns:
- the object's name or
nullif this is an anonymous object
-
hasReferenceName
public boolean hasReferenceName()Description copied from class:ObjectTypeReturns true if the object is named.- Overrides:
hasReferenceNamein classObjectType- Returns:
- true if the object is named, false if it is anonymous
-
isNativeObjectType
public boolean isNativeObjectType()Whether this is a built-in object.- Overrides:
isNativeObjectTypein classObjectType
-
getOwnerFunction
Description copied from class:ObjectTypeGets the owner of this if it's a function prototype.- Overrides:
getOwnerFunctionin classObjectType
-
getCtorImplementedInterfaces
Description copied from class:ObjectTypeGets the interfaces implemented by the ctor associated with this type. Intended to be overridden by subclasses.- Overrides:
getCtorImplementedInterfacesin classObjectType
-
getCtorExtendedInterfaces
Description copied from class:ObjectTypeGets the interfaces extended by the interface associated with this type. Intended to be overridden by subclasses.- Overrides:
getCtorExtendedInterfacesin classObjectType
-
matchConstraint
Description copied from class:JSTypeModify this type so that it matches the specified type. This is useful for reverse type-inference, where we want to infer that an object literal matches its constraint (much like how the java compiler does reverse-inference to figure out generics).- Overrides:
matchConstraintin classJSType- Parameters:
constraint-
-
matchRecordTypeConstraint
-