Class UnionType
- java.lang.Object
-
- com.google.javascript.rhino.jstype.JSType
-
- com.google.javascript.rhino.jstype.UnionType
-
- All Implemented Interfaces:
java.io.Serializable
public class UnionType extends JSType
A type that may be any one of a set of types, and thus has the intersection of the properties of those types.The
UnionTypeimplements 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 typeStringor of typeboolean. 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:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classUnionType.BuilderImplements type unioning logic, sinceUnionTypes only actually need to perform unioning operations when being (re)built.-
Nested classes/interfaces inherited from class com.google.javascript.rhino.jstype.JSType
JSType.HasPropertyKind, JSType.Nullability, JSType.SubtypingMode, JSType.TypePair
-
-
Field Summary
-
Fields inherited from class com.google.javascript.rhino.jstype.JSType
templateTypeMap
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description JSTypeautobox()Dereferences a type for property access.static UnionType.Builderbuilder(JSTypeRegistry registry)Creates aUnionType.Builderfor a newUnionType.booleancanBeCalled()This predicate is used to test whether a given type can be used as the 'function' in a function call.JSTypecollapseUnion()Gets the least supertype of this that's not a union.booleancontains(JSType type)AUnionTypecontains a given type (alternate) iff the member vector contains it.protected JSTypefindPropertyTypeWithoutConsideringTemplateTypes(java.lang.String propertyName)Looks up a property on this type, but without properly replacing any templates in the result.com.google.common.collect.ImmutableList<JSType>getAlternates()Gets the alternate types of this union type.JSTypegetLeastSupertype(JSType that)Gets the least supertype ofthisandthat.BooleanLiteralSetgetPossibleToBooleanOutcomes()Computes the set of possible outcomes of theToBooleanpredicate for this type.JSType.HasPropertyKindgetPropertyKind(java.lang.String pname, boolean autobox)Checks whether the property is present on the object.JSTypegetRestrictedTypeGivenOutcome(Outcome outcome)Computes the restricted type of this type knowing that theToBooleanpredicate has a specific value.JSTypegetRestrictedUnion(JSType type)Returns a more restricted union type thanthisone, in which all subtypes oftypehave been removed.JSType.TypePairgetTypesUnderEquality(JSType that)Computes the subset ofthisandthattypes if equality is observed.JSType.TypePairgetTypesUnderInequality(JSType that)Computes the subset ofthisandthattypes if inequality is observed.JSType.TypePairgetTypesUnderShallowInequality(JSType that)Computes the subset ofthisandthattypes under shallow inequality.booleanhasAnyTemplateTypesInternal()booleanisDict()Returns true iffthiscan be adict.booleanisExplicitlyVoidable()Tests whether this type explicitly allows undefined (as opposed to ? or *).booleanisNullable()This 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.booleanisUnknownType()booleanisVoidable()Tests whether this type is voidable.voidmatchConstraint(JSType constraint)Modify this type so that it matches the specified type.booleanmatchesNumberContext()This predicate is used to test whether a given type can appear in a numeric context, such as an operand of a multiply operator.booleanmatchesObjectContext()This predicate is used to test whether a given type can appear in anObjectcontext, such as the expression in awithstatement.booleanmatchesStringContext()This predicate is used to test whether a given type can appear in aStringcontext, such as an operand of a string concat (+) operator.booleanmatchesSymbolContext()This predicate is used to test whether a given type can appear in aSymbolcontextJSTyperestrictByNotNull()If this is a union type, returns a union type that does not include the null type.JSTyperestrictByNotNullOrUndefined()If this is a union type, returns a union type that does not include the null or undefined type.JSTyperestrictByNotUndefined()If this is a union type, returns a union type that does not include the undefined type.TernaryValuetestForEquality(JSType that)Comparesthisandthat.UnionTypetoMaybeUnionType()Downcasts this to a UnionType, or returns null if this is not a UnionType.<T> Tvisit(Visitor<T> visitor)Visit this type with the given visitor.-
Methods inherited from class com.google.javascript.rhino.jstype.JSType
areIdentical, assertFunctionType, assertObjectType, autoboxesTo, canCastTo, canTestForEqualityWith, canTestForShallowEqualityWith, containsReferenceAncestor, dereference, differsFrom, equals, findPropertyType, getDisplayName, getEnumeratedTypeOfEnumElement, getGreatestSubtype, getGreatestSubtypeWithProperty, getJSDocInfo, getPropertyKind, getTemplateParamCount, getTemplateTypeMap, getTypeParameters, getTypesUnderShallowEquality, getUnionMembers, hasAnyTemplateTypes, hasDisplayName, hashCode, hasProperty, isAllType, isArrayType, isBigIntObjectType, isBigIntOrNumber, isBigIntValueType, isBooleanObjectType, isBooleanValueType, isBoxableScalar, isCheckedUnknownType, isConstructor, isDateType, isEmptyType, isEnumElementType, isEnumType, isFunctionPrototypeType, isFunctionType, isGlobalThisType, isInstanceType, isInterface, isLiteralObject, isNamedType, isNativeObjectType, isNominalConstructorOrInterface, isNominalType, isNoObjectType, isNoResolvedType, isNoType, isNullType, isNumber, isNumberObjectType, isNumberValueType, isObjectType, isOnlyBigInt, isOrdinaryFunction, isRawTypeOfTemplatizedType, isRecordType, isRegexpType, isResolved, isSomeUnknownType, isString, isStringObjectType, isStringValueType, isStructuralInterface, isStructuralType, isSubtype, isSubtype, isSubtypeOf, isSubtypeOf, isSubtypeWithoutStructuralTyping, isSuccessfullyResolved, isSymbol, isSymbolObjectType, isSymbolValueType, isTemplateType, isTemplatizedType, isUnionType, isUnresolved, isUnresolvedOrResolvedUnknown, isUnsuccessfullyResolved, isVoidType, loosenTypecheckingDueToForwardReferencedSupertype, mergeSupertypeTemplateTypes, resolve, setValidator, toAnnotationString, toMaybeEnumElementType, toMaybeEnumType, toMaybeFunctionType, toMaybeFunctionType, toMaybeNamedType, toMaybeObjectType, toMaybeRecordType, toMaybeTemplateType, toMaybeTemplatizedType, toObjectType, toString
-
-
-
-
Method Detail
-
builder
public static UnionType.Builder builder(JSTypeRegistry registry)
Creates aUnionType.Builderfor a newUnionType.
-
getAlternates
public com.google.common.collect.ImmutableList<JSType> 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
-
matchesSymbolContext
public boolean matchesSymbolContext()
This predicate is used to test whether a given type can appear in aSymbolcontext- Overrides:
matchesSymbolContextin classJSType- Returns:
trueif not it maybe a symbol or Symbol object
-
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
-
findPropertyTypeWithoutConsideringTemplateTypes
protected JSType findPropertyTypeWithoutConsideringTemplateTypes(java.lang.String propertyName)
Description copied from class:JSTypeLooks up a property on this type, but without properly replacing any templates in the result.Subclasses can override this if they need more complicated logic for property lookup than just autoboxing to an object.
This is only for use by
findPropertyType(JSType). Call that method instead if you need to lookup a property on a random JSType- Overrides:
findPropertyTypeWithoutConsideringTemplateTypesin 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.- Overrides:
canBeCalledin classJSType- Returns:
trueif this type might be callable.
-
autobox
public JSType autobox()
Description copied from class:JSTypeDereferences a type for property access. Filters null/undefined and autoboxes the resulting type. Never returns null.
-
restrictByNotNullOrUndefined
public JSType 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
-
restrictByNotUndefined
public JSType restrictByNotUndefined()
Description copied from class:JSTypeIf this is a union type, returns a union type that does not include the undefined type.- Overrides:
restrictByNotUndefinedin classJSType
-
restrictByNotNull
public JSType restrictByNotNull()
Description copied from class:JSTypeIf this is a union type, returns a union type that does not include the null type.- Overrides:
restrictByNotNullin classJSType
-
testForEquality
public TernaryValue testForEquality(JSType that)
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.
-
isVoidable
public boolean isVoidable()
Tests whether this type is voidable.- Overrides:
isVoidablein classJSType
-
isExplicitlyVoidable
public boolean isExplicitlyVoidable()
Tests whether this type explicitly allows undefined (as opposed to ? or *).- Overrides:
isExplicitlyVoidablein classJSType
-
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
public JSType getLeastSupertype(JSType that)
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
-
getPropertyKind
public JSType.HasPropertyKind getPropertyKind(java.lang.String pname, boolean autobox)
Description copied from class:JSTypeChecks whether the property is present on the object.- Overrides:
getPropertyKindin classJSType- Parameters:
pname- The property name.autobox- Whether to check for the presents on an autoboxed type
-
toMaybeUnionType
public UnionType 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
public boolean contains(JSType type)
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
public JSType getRestrictedUnion(JSType type)
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
-
getRestrictedTypeGivenOutcome
public JSType getRestrictedTypeGivenOutcome(Outcome outcome)
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:
getRestrictedTypeGivenOutcomein 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
public BooleanLiteralSet 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:ToBoolean results by input type 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
public JSType.TypePair getTypesUnderEquality(JSType that)
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
public JSType.TypePair getTypesUnderInequality(JSType that)
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
public JSType.TypePair getTypesUnderShallowInequality(JSType that)
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
public <T> T visit(Visitor<T> visitor)
Description copied from class:JSTypeVisit this type with the given visitor.
-
collapseUnion
public JSType collapseUnion()
Description copied from class:JSTypeGets the least supertype of this that's not a union.- Overrides:
collapseUnionin classJSType
-
matchConstraint
public void matchConstraint(JSType constraint)
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()
-
-