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 Details

    • TypeMismatch

      public TypeMismatch(JSType found, JSType required, Node location)
      Creates an instance of a TypeMismatch record class.
      Parameters:
      found - the value for the found record component
      required - the value for the required record component
      location - the value for the location record component
  • Method Details

    • getFound

      @InlineMe(replacement="this.found()") public JSType getFound()
    • getRequired

      @InlineMe(replacement="this.required()") public JSType getRequired()
    • getLocation

      @InlineMe(replacement="this.location()") public Node getLocation()
    • createForTesting

      public static TypeMismatch createForTesting(JSType found, JSType required)
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • found

      public JSType found()
      Returns the value of the found record component.
      Returns:
      the value of the found record component
    • required

      public JSType required()
      Returns the value of the required record component.
      Returns:
      the value of the required record component
    • location

      public Node location()
      Returns the value of the location record component.
      Returns:
      the value of the location record component