Class UnionType
- All Implemented Interfaces:
Serializable
UnionType implements a common JavaScript idiom in which the
code is specifically designed to work with multiple input types. Because
JavaScript always knows the run-time type of an object value, this is safer
than a C union.
For instance, values of the union type (String,boolean) can be of
type String or of type boolean. The commutativity of the
statement is captured by making (String,boolean) and
(boolean,String) equal.
The implementation of this class prevents the creation of nested unions.
- 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 TypeMethodDescriptionautobox()Dereference a type for property access.booleanThis predicate is used to test whether a given type can be used as the 'function' in a function call.Gets the least supertype of this that's not a union.booleanAUnionTypecontains a given type (alternate) iff the member vector contains it.findPropertyType(String propertyName) Coerces this type to an Object type, then gets the type of the property whose name is given.Gets the alternate types of this union type.getLeastSupertype(JSType that) Gets the least supertype ofthisandthat.Computes the set of possible outcomes of theToBooleanpredicate for this type.getRestrictedTypeGivenToBooleanOutcome(boolean outcome) Computes the restricted type of this type knowing that theToBooleanpredicate has a specific value.getRestrictedUnion(JSType type) Returns a more restricted union type thanthisone, in which all subtypes oftypehave been removed.getTypesUnderEquality(JSType that) Computes the subset ofthisandthattypes if equality is observed.Computes the subset ofthisandthattypes if inequality is observed.Computes the subset ofthisandthattypes under shallow inequality.booleaninthashCode()booleanhasProperty(String pname) Checks whether the property is present on the object.booleanisDict()Returns true iffthiscan be adict.booleanThis predicate determines whether objects of this type can have thenullvalue, and therefore can appear in contexts wherenullis expected.booleanisObject()Tests whether this type is anObject, or any subtype thereof.booleanisStruct()Returns true iffthiscan be astruct.booleanChecks whetherthisis a subtype ofthat.booleanvoidmatchConstraint(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 awithstatement.booleanThis predicate is used to test whether a given type can appear in aStringcontext, such as an operand of a string concat (+) operator.If this is a union type, returns a union type that does not include the null or undefined type.booleansetValidator(com.google.common.base.Predicate<JSType> validator) Certain types have constraints on them at resolution-time.testForEquality(JSType that) Comparesthisandthat.A hash code function for diagnosing complicated issues around type-identity.Downcasts this to a UnionType, or returns null if this is not a UnionType.<T> TVisit this type with the given visitor.Methods inherited from class com.google.javascript.rhino.jstype.JSType
autoboxesTo, canCastTo, canTestForEqualityWith, canTestForShallowEqualityWith, clearResolved, dereference, differsFrom, equals, forceResolve, getDisplayName, getGreatestSubtype, getJSDocInfo, getTemplateTypeMap, getTypesUnderShallowEquality, hasAnyTemplateTypes, hasDisplayName, isAllType, isArrayType, isBooleanObjectType, isBooleanValueType, isCheckedUnknownType, isConstructor, isDateType, isEmptyType, isEnumElementType, isEnumType, isEquivalent, isEquivalentTo, isFunctionPrototypeType, isFunctionType, isGlobalThisType, isInstanceType, isInterface, isInvariant, isNominalConstructor, isNominalType, isNoObjectType, isNoResolvedType, isNoType, isNullType, isNumber, isNumberObjectType, isNumberValueType, isOrdinaryFunction, isRecordType, isRegexpType, isResolved, isString, isStringObjectType, isStringValueType, isTemplateType, isTemplatizedType, isUnionType, isVoidType, matchesInt32Context, matchesUint32Context, resolve, toAnnotationString, toMaybeEnumElementType, toMaybeEnumType, toMaybeFunctionType, toMaybeFunctionType, toMaybeTemplateType, toMaybeTemplateType, toMaybeTemplatizedType, toMaybeTemplatizedType, toObjectType, toString, unboxesTo
-
Method Details
-
getAlternates
Gets the alternate types of this union type.- Returns:
- The alternate types of this union type. The returned set is immutable.
-
matchesNumberContext
public boolean matchesNumberContext()This 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- Returns:
- true if the type can appear in a numeric context.
-
matchesStringContext
public boolean matchesStringContext()This 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 to
String. 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- Returns:
trueif notVoidType
-
matchesObjectContext
public boolean matchesObjectContext()This predicate is used to test whether a given type can appear in anObjectcontext, such as the expression in awithstatement.Most types we will encounter, except notably
null, have at least the potential for converting toObject. Host defined objects can get peculiar.VOID type is included here because while it is not part of the JavaScript language, functions returning 'void' type can't be used as operands of any operator or statement.
- Overrides:
matchesObjectContextin classJSType- Returns:
trueif the type is notNullTypeorVoidType
-
findPropertyType
Description copied from class:JSTypeCoerces this type to an Object type, then gets the type of the property whose name is given. UnlikeObjectType.getPropertyType(java.lang.String), returns null if the property is not found.- Overrides:
findPropertyTypein classJSType- Returns:
- The property's type.
nullif the current type cannot have properties, or if the type is not found.
-
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.- Overrides:
canBeCalledin classJSType- Returns:
trueif this type might be callable.
-
autobox
Description copied from class:JSTypeDereference a type for property access. Filters null/undefined and autoboxes the resulting type. Never returns null. -
restrictByNotNullOrUndefined
Description copied from class:JSTypeIf this is a union type, returns a union type that does not include the null or undefined type.- Overrides:
restrictByNotNullOrUndefinedin classJSType
-
testForEquality
Description copied from class:JSTypeComparesthisandthat.- Overrides:
testForEqualityin classJSType- Returns:
TernaryValue.TRUEif the comparison of values ofthistype andthatalways succeed (such asundefinedcompared tonull)TernaryValue.FALSEif the comparison of values ofthistype andthatalways fails (such asundefinedcompared tonumber)TernaryValue.UNKNOWNif the comparison can succeed or fail depending on the concrete values
-
isNullable
public boolean isNullable()This predicate determines whether objects of this type can have thenullvalue, and therefore can appear in contexts wherenullis expected.- Overrides:
isNullablein classJSType- Returns:
truefor everything butNumberandBooleantypes.
-
isUnknownType
public boolean isUnknownType()- Overrides:
isUnknownTypein classJSType
-
isStruct
public boolean isStruct()Description copied from class:JSTypeReturns true iffthiscan be astruct. UnionType overrides the method, assumethisis not a union here. -
isDict
public boolean isDict()Description copied from class:JSTypeReturns true iffthiscan be adict. UnionType overrides the method, assumethisis not a union here. -
getLeastSupertype
Description copied from class:JSTypeGets the least supertype ofthisandthat. The least supertype is the join (∨) or supremum of both types in the type lattice.Examples:
number ∨ *=*number ∨ Object=(number, Object)Number ∨ Object=Object
- Overrides:
getLeastSupertypein classJSType- Returns:
this ∨ that
-
hasProperty
Description copied from class:JSTypeChecks whether the property is present on the object.- Overrides:
hasPropertyin classJSType- Parameters:
pname- The property name.
-
hashCode
public int hashCode() -
toMaybeUnionType
Description copied from class:JSTypeDowncasts this to a UnionType, or returns null if this is not a UnionType. Named in honor of Haskell's Maybe type constructor.- Overrides:
toMaybeUnionTypein classJSType
-
isObject
public boolean isObject()Description copied from class:JSTypeTests whether this type is anObject, or any subtype thereof. -
contains
AUnionTypecontains a given type (alternate) iff the member vector contains it.- Parameters:
type- The alternate which might be in this union.- Returns:
trueif the alternate is in the union
-
getRestrictedUnion
Returns a more restricted union type thanthisone, in which all subtypes oftypehave been removed.Examples:
(number,string)restricted bynumberisstring(null, EvalError, URIError)restricted byErrorisnull
- Parameters:
type- the supertype of the types to remove from this union type
-
isSubtype
Description copied from class:JSTypeChecks whetherthisis a subtype ofthat.Subtyping rules:
- (unknown) — every type is a subtype of the Unknown type.
- (no) — the No type is a subtype of every type.
- (no-object) — the NoObject type is a subtype of every object type (i.e. subtypes of the Object type).
- (ref) — a type is a subtype of itself.
- (union-l) — A union type is a subtype of a type U if all the
union type's constituents are a subtype of U. Formally
(T<sub>1</sub>, …, T<sub>n</sub>) <: Uif and onlyT<sub>k</sub> <: Ufor allk ∈ 1..n. - (union-r) — A type U is a subtype of a union type if it is a
subtype of one of the union type's constituents. Formally
U <: (T<sub>1</sub>, …, T<sub>n</sub>)if and only ifU <: T<sub>k</sub>for some indexk. - (objects) — an Object
O<sub>1</sub>is a subtype of an objectO<sub>2</sub>if it has more properties thanO<sub>2</sub>and all common properties are pairwise subtypes.
-
getRestrictedTypeGivenToBooleanOutcome
Description copied from class:JSTypeComputes the restricted type of this type knowing that theToBooleanpredicate has a specific value. For more information about theToBooleanpredicate, seeJSType.getPossibleToBooleanOutcomes().- Overrides:
getRestrictedTypeGivenToBooleanOutcomein classJSType- Parameters:
outcome- the value of theToBooleanpredicate- Returns:
- the restricted type, or the Any Type if the underlying type could not have yielded this ToBoolean value TODO(user): Move this method to the SemanticRAI and use the visit method of types to get the restricted type.
-
getPossibleToBooleanOutcomes
Description copied from class:JSTypeComputes the set of possible outcomes of theToBooleanpredicate for this type. TheToBooleanpredicate is defined by the ECMA-262 standard, 3rd edition. Its behavior for simple types can be summarized by the following table:type result undefined{false} null{false} boolean{true, false} number{true, false} string{true, false} Object{true} - Specified by:
getPossibleToBooleanOutcomesin classJSType- Returns:
- the set of boolean literals for this type
-
getTypesUnderEquality
Description copied from class:JSTypeComputes the subset ofthisandthattypes if equality is observed. If a valuev1of typenullis equal to a valuev2of type(undefined,number), we can infer that the type ofv1isnulland the type ofv2isundefined.- Overrides:
getTypesUnderEqualityin classJSType- Returns:
- a pair containing the restricted type of
thisas the first component and the restricted type ofthatas the second element. The returned pair is nevernulleven though its components may benull
-
getTypesUnderInequality
Description copied from class:JSTypeComputes the subset ofthisandthattypes if inequality is observed. If a valuev1of typenumberis not equal to a valuev2of type(undefined,number), we can infer that the type ofv1isnumberand the type ofv2isnumberas well.- Overrides:
getTypesUnderInequalityin classJSType- Returns:
- a pair containing the restricted type of
thisas the first component and the restricted type ofthatas the second element. The returned pair is nevernulleven though its components may benull
-
getTypesUnderShallowInequality
Description copied from class:JSTypeComputes the subset ofthisandthattypes under shallow inequality.- Overrides:
getTypesUnderShallowInequalityin classJSType- Returns:
- A pair containing the restricted type of
thisas the first component and the restricted type ofthatas the second element. The returned pair is nevernulleven though its components may benull
-
visit
Description copied from class:JSTypeVisit this type with the given visitor. -
toDebugHashCodeString
Description copied from class:JSTypeA hash code function for diagnosing complicated issues around type-identity.- Overrides:
toDebugHashCodeStringin classJSType
-
setValidator
Description copied from class:JSTypeCertain types have constraints on them at resolution-time. For example, a type in an@extendsannotation must be an object. Clients should inject a validator that emits a warning if the type does not validate, and return false.- Overrides:
setValidatorin classJSType
-
collapseUnion
Description copied from class:JSTypeGets the least supertype of this that's not a union.- Overrides:
collapseUnionin classJSType
-
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
-
hasAnyTemplateTypesInternal
public boolean hasAnyTemplateTypesInternal()
-