equalsType
Returns the type of the expression this == other
If the equals operator is not overloaded, this method should look for a default equals operator and resolve the type itself. This isi the default implementation of equalsType, we don't know anything about the type here and so we just try to search for an overloaded operator.
In implementation of equalsType should look something like this:
override fun equalsType(other: ShakeType, scope: ShakeScope): ShakeType? {
return super.equalsType(other, scope) ?: ... // default operator stuff
}
Content copied to clipboard
Return
The return type of the compare expression
Since
0.1.0
Parameters
other
The type to compare
scope
The scope in which the compare is done