Package com.google.javascript.jscomp
Record Class TypeMismatch
java.lang.Object
java.lang.Record
com.google.javascript.jscomp.TypeMismatch
- Record Components:
found- The RHS type; the type of the assignment target.required- The LHS type; the type being assigned.location- The location of the assignment.
- All Implemented Interfaces:
Serializable
public record TypeMismatch(JSType found, JSType required, Node location)
extends Record
implements Serializable
Signals that the first type and the second type have been used interchangeably.
Type-based optimizations should take this into account so that they don't wreck code with type warnings.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionTypeMismatch(JSType found, JSType required, Node location) Creates an instance of aTypeMismatchrecord class. -
Method Summary
Modifier and TypeMethodDescriptionstatic TypeMismatchcreateForTesting(JSType found, JSType required) final booleanIndicates whether some other object is "equal to" this one.found()Returns the value of thefoundrecord component.getFound()final inthashCode()Returns a hash code value for this object.location()Returns the value of thelocationrecord component.required()Returns the value of therequiredrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Method Details
-
getFound
-
getRequired
-
getLocation
-
createForTesting
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
found
Returns the value of thefoundrecord component.- Returns:
- the value of the
foundrecord component
-
required
Returns the value of therequiredrecord component.- Returns:
- the value of the
requiredrecord component
-
location
Returns the value of thelocationrecord component.- Returns:
- the value of the
locationrecord component
-