dspecIfSame method

bool dspecIfSame(
  1. dynamic other
)

Implementation

bool dspecIfSame(other) {
    if(this is Deprecated && other is Deprecated)
        return (this as Deprecated).dspecIfSame(other);
    else if(this is Expando && other is Expando)
        return (this as Expando).dspecIfSame(other);
    else if(this is Function && other is Function)
        return (this as Function).dspecIfSame(other);
    else if(this is List && other is List)
        return (this as List).dspecIfSame(other);
    else if(this is Map && other is Map)
        return (this as Map).dspecIfSame(other);
    else if(this is MapEntry && other is MapEntry)
        return (this as MapEntry).dspecIfSame(other);
    else if(this is pragma && other is pragma)
        return (this as pragma).dspecIfSame(other);
    else if(this is RuneIterator && other is RuneIterator)
        return (this as RuneIterator).dspecIfSame(other);
    else if(this is Runes && other is Runes)
        return (this as Runes).dspecIfSame(other);
    else if(this is Set && other is Set)
        return (this as Set).dspecIfSame(other);
    else if(this is StackTrace && other is StackTrace)
        return (this as StackTrace).dspecIfSame(other);
    else if(this is StringBuffer && other is StringBuffer)
        return (this as StringBuffer).dspecIfSame(other);
    else if(this is UriData && other is UriData)
        return (this as UriData).dspecIfSame(other);
    else
        return this == other;
}