You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This also is breaking weird now.
This was a result of #152 but is working now
// used to break like thisif(oldValueType!=newValueType// Definitely different||!IsKnownImmutableType(oldValueType)// Maybe different||!oldValue.Equals(newValue))// Somebody says they are different{returntrue;}// now breaks likeif(oldValueType!=newValueType// Definitely different||!IsKnownImmutableType(oldValueType)// Maybe different||!oldValue.Equals(newValue))// Somebody says they are different{returntrue;}
This if statement breaks in a rather weird way.
The text was updated successfully, but these errors were encountered: